Home
last modified time | relevance | path

Searched refs:max_digits (Results 1 – 8 of 8) sorted by relevance

/openbmc/qemu/monitor/
H A Dhmp-cmds-target.c126 int l, line_size, i, max_digits, len; in memory_dump() local
147 max_digits = 0; in memory_dump()
151 max_digits = DIV_ROUND_UP(wsize * 8, 3); in memory_dump()
155 max_digits = (wsize * 8) / 4; in memory_dump()
159 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33); in memory_dump()
209 monitor_printf(mon, "%#*" PRIo64, max_digits, v); in memory_dump()
212 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v); in memory_dump()
215 monitor_printf(mon, "%*" PRIu64, max_digits, v); in memory_dump()
218 monitor_printf(mon, "%*" PRId64, max_digits, v); in memory_dump()
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/migrations/
H A D0005_task_field_separation.py21 field=models.DecimalField(null=True, max_digits=8, decimal_places=2),
26 field=models.DecimalField(null=True, max_digits=8, decimal_places=2),
H A D0001_initial.py335 ('cpu_usage', models.DecimalField(null=True, max_digits=8, decimal_places=2)),
336 ('elapsed_time', models.DecimalField(null=True, max_digits=8, decimal_places=2)),
/openbmc/u-boot/env/
H A Dflags.c173 int max_digits) in skip_num() argument
180 for (i = max_digits; i != 0; i--) { in skip_num()
/openbmc/openbmc/poky/meta/recipes-support/vte/vte/
H A D0004-fast_float-Add-single-header-library-for-from_char-i.patch544 + static inline constexpr size_t max_digits();
764 +template <> inline constexpr size_t binary_format<double>::max_digits() {
767 +template <> inline constexpr size_t binary_format<float>::max_digits() {
1536 + size_t max_digits = max_digits_u64(base);
1537 + if (digit_count > max_digits) {
1542 + // a max_digits(base) equivalent
1543 + if (digit_count == max_digits && i < min_safe_u64(base)) {
3383 + size_t max_digits, size_t &digits) noexcept {
3403 + (max_digits - digits >= 8)) {
3406 + while (counter < step && p != pend && digits < max_digits) {
[all …]
/openbmc/qemu/target/ppc/
H A Ddfp_helper.c1375 unsigned max_digits = ((size) == 64) ? 16 : 34; \
1379 if (sh <= max_digits) { \
1394 if (special && (dfp.t.digits >= max_digits)) { \
1395 dfp.t.digits = max_digits - 1; \
/openbmc/openbmc/poky/bitbake/lib/toaster/orm/
H A Dmodels.py1122 elapsed_time = models.DecimalField(max_digits=8, decimal_places=2, null=True)
1130 cpu_time_user = models.DecimalField(max_digits=8, decimal_places=2, null=True)
1131 cpu_time_system = models.DecimalField(max_digits=8, decimal_places=2, null=True)
/openbmc/linux/net/core/
H A Dpktgen.c842 const int max_digits = 10; in get_imix_entries() local
856 len = num_arg(&buffer[i], max_digits, &size); in get_imix_entries()
870 len = num_arg(&buffer[i], max_digits, &weight); in get_imix_entries()