Searched refs:iec_binary_prefix (Results 1 – 4 of 4) sorted by relevance
/openbmc/qemu/include/qemu/ |
H A D | cutils.h | 20 const char *iec_binary_prefix(unsigned int exp2);
|
/openbmc/qemu/stats/ |
H A D | stats-hmp-cmds.c | 39 monitor_puts(mon, iec_binary_prefix(value->exponent)); in print_stats_schema_value()
|
/openbmc/qemu/util/ |
H A D | cutils.c | 962 const char *iec_binary_prefix(unsigned int exp2) in iec_binary_prefix() function 991 return g_strdup_printf("%0.3g %sB", (double)val / div, iec_binary_prefix(i)); in size_to_str()
|
/openbmc/qemu/tests/unit/ |
H A D | test-cutils.c | 3603 g_assert_cmpstr(iec_binary_prefix(0), ==, ""); in test_iec_binary_prefix() 3604 g_assert_cmpstr(iec_binary_prefix(10), ==, "Ki"); in test_iec_binary_prefix() 3605 g_assert_cmpstr(iec_binary_prefix(20), ==, "Mi"); in test_iec_binary_prefix() 3606 g_assert_cmpstr(iec_binary_prefix(30), ==, "Gi"); in test_iec_binary_prefix() 3607 g_assert_cmpstr(iec_binary_prefix(40), ==, "Ti"); in test_iec_binary_prefix() 3608 g_assert_cmpstr(iec_binary_prefix(50), ==, "Pi"); in test_iec_binary_prefix() 3609 g_assert_cmpstr(iec_binary_prefix(60), ==, "Ei"); in test_iec_binary_prefix()
|