Home
last modified time | relevance | path

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

/external/skqp/src/core/
DSkCubicMap.cpp45 return sk_float_abs(delta) <= 0.0001f; in delta_nearly_zero()
156 float err = sk_float_abs(answer - answer2); in compute_t_from_x()
189 return sk_float_abs(delta) <= 0.0000001f; in coeff_nearly_zero()
/external/skia/src/core/
DSkCubicMap.cpp46 float err = sk_float_abs(answer - answer2); in compute_t_from_x()
79 return sk_float_abs(delta) <= 0.0000001f; in coeff_nearly_zero()
DSkCubicSolver.h48 if (sk_float_abs(f) <= 0.00005f) { in cubic_solver()
/external/skia/tools/viewer/
DTouchGesture.cpp98 return sk_float_abs(x0 - x1) <= MAX_JITTER_RADIUS && in close_enough_for_jitter()
99 sk_float_abs(y0 - y1) <= MAX_JITTER_RADIUS; in close_enough_for_jitter()
/external/skqp/tools/viewer/
DTouchGesture.cpp98 return sk_float_abs(x0 - x1) <= MAX_JITTER_RADIUS && in close_enough_for_jitter()
99 sk_float_abs(y0 - y1) <= MAX_JITTER_RADIUS; in close_enough_for_jitter()
/external/skqp/tests/
DMathTest.cpp265 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
275 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
285 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
/external/skqp/include/private/
DSkFloatingPoint.h53 #define sk_float_abs(x) fabsf(x) macro
/external/skia/include/core/
DSkScalar.h38 #define SkScalarAbs(x) sk_float_abs(x)
/external/skia/tests/
DMathTest.cpp263 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
273 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
283 float relativeError = sk_float_abs(exact - estimate)/exact; in test_rsqrt()
/external/skqp/include/core/
DSkScalar.h38 #define SkScalarAbs(x) sk_float_abs(x)
DSkMatrix44.h68 return sk_float_abs(x); in SkMScalarAbs()
/external/skia/include/private/
DSkFloatingPoint.h60 #define sk_float_abs(x) fabsf(x) macro
/external/skia/src/gpu/ops/
DGrTextureOp.cpp55 float dw = sk_float_abs(quad.x(2) - quad.x(0)) + sk_float_abs(quad.y(2) - quad.y(0)); in axis_aligned_quad_size()
56 float dh = sk_float_abs(quad.x(1) - quad.x(0)) + sk_float_abs(quad.y(1) - quad.y(0)); in axis_aligned_quad_size()