Searched refs:test_string_get_size_one (Results 1 – 1 of 1) sorted by relevance
/lib/ |
D | test-string_helpers.c | 330 #define test_string_get_size_one(size, blk_size, exp_result10, exp_result2) \ macro 376 test_string_get_size_one(0, 512, "0 B", "0 B"); in test_string_get_size() 377 test_string_get_size_one(1, 512, "512 B", "512 B"); in test_string_get_size() 378 test_string_get_size_one(1100, 1, "1.10 kB", "1.07 KiB"); in test_string_get_size() 381 test_string_get_size_one(16384, 512, "8.39 MB", "8.00 MiB"); in test_string_get_size() 382 test_string_get_size_one(500118192, 512, "256 GB", "238 GiB"); in test_string_get_size() 383 test_string_get_size_one(8192, 4096, "33.6 MB", "32.0 MiB"); in test_string_get_size() 386 test_string_get_size_one(3000, 1900, "5.70 MB", "5.44 MiB"); in test_string_get_size() 389 test_string_get_size_one(U64_MAX, 4096, "75.6 ZB", "64.0 ZiB"); in test_string_get_size() 390 test_string_get_size_one(4096, U64_MAX, "75.6 ZB", "64.0 ZiB"); in test_string_get_size()
|