Searched refs:make_float (Results 1 - 1 of 1) sorted by relevance
/third_party/json/tests/src/ |
H A D | unit-to_chars.cpp | 20 float make_float(uint32_t sign_bit, uint32_t biased_exponent, uint32_t significand) in make_float() function 36 float make_float(uint64_t f, int e) in make_float() function 144 check_float(make_float(0, 0, 0x00000001), "1", -45); // min denormal 145 check_float(make_float(0, 0, 0x007FFFFF), "11754942", -45); // max denormal 146 check_float(make_float(0, 1, 0x00000000), "11754944", -45); // min normal 147 check_float(make_float(0, 1, 0x00000001), "11754945", -45); 148 check_float(make_float(0, 1, 0x007FFFFF), "23509886", -45); 149 check_float(make_float(0, 2, 0x00000000), "23509887", -45); 150 check_float(make_float(0, 2, 0x00000001), "2350989", -44); 151 check_float(make_float( [all...] |
Completed in 2 milliseconds