Searched refs:test_parse_fixed_r (Results 1 – 1 of 1) sorted by relevance
/external/skia/tests/ |
D | FontMgrAndroidParserTest.cpp | 106 template <int N, typename T> static double test_parse_fixed_r(skiatest::Reporter* reporter, in test_parse_fixed_r() function 135 test_parse_fixed_r<27, int32_t>(reporter, -8.1, -7.9, 0.000001); in test_parse_fixed() 136 test_parse_fixed_r<27, int32_t>(reporter, -0.1, 0.1, 0.000001); in test_parse_fixed() 137 test_parse_fixed_r<27, int32_t>(reporter, 7.9, 8.1, 0.000001); in test_parse_fixed() 138 test_parse_fixed_r<16, int32_t>(reporter, -0.125, 0.125, 1.0 / (1 << 19)); in test_parse_fixed() 139 test_parse_fixed_r<16, int32_t>(reporter, -32768.125, -32766.875, 1.0 / (1 << 17)); in test_parse_fixed() 140 test_parse_fixed_r<16, int32_t>(reporter, 32766.875, 32768.125, 1.0 / (1 << 17)); in test_parse_fixed() 141 test_parse_fixed_r<16, int32_t>(reporter, -1.1, 1.1, 0.0001); in test_parse_fixed()
|