Home
last modified time | relevance | path

Searched refs:test_floatclass (Results 1 – 1 of 1) sorted by relevance

/aosp_15_r20/external/skia/tests/
H A DScalarTest.cpp128 static void test_floatclass(skiatest::Reporter* reporter, float value, FloatClass fc) { in test_floatclass() function
153 test_floatclass(reporter, 0, kFinite); in test_isfinite()
154 test_floatclass(reporter, max, kFinite); in test_isfinite()
155 test_floatclass(reporter, -max, kFinite); in test_isfinite()
156 test_floatclass(reporter, inf, kInfinite); in test_isfinite()
157 test_floatclass(reporter, -inf, kInfinite); in test_isfinite()
158 test_floatclass(reporter, nan, kNaN); in test_isfinite()
159 test_floatclass(reporter, -nan, kNaN); in test_isfinite()