Home
last modified time | relevance | path

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

/openbmc/qemu/monitor/
H A Dhmp-cmds-target.c125 int l, line_size, i, max_digits, len; in memory_dump() local
146 max_digits = 0; in memory_dump()
150 max_digits = DIV_ROUND_UP(wsize * 8, 3); in memory_dump()
154 max_digits = (wsize * 8) / 4; in memory_dump()
158 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33); in memory_dump()
208 monitor_printf(mon, "%#*" PRIo64, max_digits, v); in memory_dump()
211 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v); in memory_dump()
214 monitor_printf(mon, "%*" PRIu64, max_digits, v); in memory_dump()
217 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/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
853 len = num_arg(&buffer[i], max_digits, &size); in get_imix_entries()
867 len = num_arg(&buffer[i], max_digits, &weight); in get_imix_entries()