Searched refs:max_digits (Results 1 – 7 of 7) sorted by relevance
| /openbmc/qemu/monitor/ |
| H A D | hmp-cmds-target.c | 127 int l, line_size, i, max_digits, len; in memory_dump() local 148 max_digits = 0; in memory_dump() 152 max_digits = DIV_ROUND_UP(wsize * 8, 3); in memory_dump() 156 max_digits = (wsize * 8) / 4; in memory_dump() 160 max_digits = DIV_ROUND_UP(wsize * 8 * 10, 33); in memory_dump() 210 monitor_printf(mon, "%#*" PRIo64, max_digits, v); in memory_dump() 213 monitor_printf(mon, "0x%0*" PRIx64, max_digits, v); in memory_dump() 216 monitor_printf(mon, "%*" PRIu64, max_digits, v); in memory_dump() 219 monitor_printf(mon, "%*" PRId64, max_digits, v); in memory_dump()
|
| /openbmc/openbmc/poky/bitbake/lib/toaster/orm/migrations/ |
| H A D | 0005_task_field_separation.py | 21 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 D | 0001_initial.py | 335 ('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 D | flags.c | 173 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 D | 0004-fast_float-Add-single-header-library-for-from_char-i.patch | 544 + 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 D | dfp_helper.c | 1375 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 D | models.py | 1121 elapsed_time = models.DecimalField(max_digits=8, decimal_places=2, null=True) 1129 cpu_time_user = models.DecimalField(max_digits=8, decimal_places=2, null=True) 1130 cpu_time_system = models.DecimalField(max_digits=8, decimal_places=2, null=True)
|