Searched refs:TestU64ToS (Results 1 – 1 of 1) sorted by relevance
/external/vboot_reference/tests/ |
D | utility_string_tests.c | 58 static void TestU64ToS(uint64_t value, uint32_t radix, uint32_t zero_pad_width, in TestU64ToS() function 76 TestU64ToS(0, 1, 0, ""); in Uint64ToStringTest() 77 TestU64ToS(0, 37, 0, ""); in Uint64ToStringTest() 80 TestU64ToS(0, 2, 0, "0"); in Uint64ToStringTest() 81 TestU64ToS(0x9A, 2, 0, "10011010"); in Uint64ToStringTest() 82 TestU64ToS(0x71, 2, 12, "000001110001"); in Uint64ToStringTest() 83 TestU64ToS( in Uint64ToStringTest() 88 TestU64ToS(0, 10, 0, "0"); in Uint64ToStringTest() 89 TestU64ToS(12345, 10, 0, "12345"); in Uint64ToStringTest() 90 TestU64ToS(67890, 10, 8, "00067890"); in Uint64ToStringTest() [all …]
|