Searched refs:test_parse_fixed_r (Results 1 – 1 of 1) sorted by relevance
/aosp_15_r20/external/skia/tests/ |
H A D | FontMgrAndroidParserTest.cpp | 154 template <int N, typename T> static double test_parse_fixed_r(skiatest::Reporter* reporter, in test_parse_fixed_r() function 183 test_parse_fixed_r<27, int32_t>(reporter, -8.1, -7.9, 0.000001); in test_parse_fixed() 184 test_parse_fixed_r<27, int32_t>(reporter, -0.1, 0.1, 0.000001); in test_parse_fixed() 185 test_parse_fixed_r<27, int32_t>(reporter, 7.9, 8.1, 0.000001); in test_parse_fixed() 186 test_parse_fixed_r<16, int32_t>(reporter, -0.125, 0.125, 1.0 / (1 << 19)); in test_parse_fixed() 187 test_parse_fixed_r<16, int32_t>(reporter, -32768.125, -32766.875, 1.0 / (1 << 17)); in test_parse_fixed() 188 test_parse_fixed_r<16, int32_t>(reporter, 32766.875, 32768.125, 1.0 / (1 << 17)); in test_parse_fixed() 189 test_parse_fixed_r<16, int32_t>(reporter, -1.1, 1.1, 0.0001); in test_parse_fixed()
|