Home
last modified time | relevance | path

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

/aosp_15_r20/external/skia/src/pathops/
H A DSkPathOpsTypes.h308 const double FLT_EPSILON_ORDERABLE_ERR = FLT_EPSILON * 16; variable
321 const SkScalar INVERSE_NUMBER_RANGE = FLT_EPSILON_ORDERABLE_ERR;
352 return fabs(x) < FLT_EPSILON_ORDERABLE_ERR; in approximately_zero_orderable()
422 return x - FLT_EPSILON_ORDERABLE_ERR >= y; in approximately_greater_orderable()
434 return x + FLT_EPSILON_ORDERABLE_ERR > y; in approximately_greater_or_equal_orderable()
446 return x + FLT_EPSILON_ORDERABLE_ERR <= y; in approximately_lesser_orderable()
458 return x - FLT_EPSILON_ORDERABLE_ERR < y; in approximately_lesser_or_equal_orderable()
482 return x < FLT_EPSILON_ORDERABLE_ERR; in approximately_negative_orderable()
H A DSkOpEdgeBuilder.cpp34 if (SkScalarAbs(ret.fX) < FLT_EPSILON_ORDERABLE_ERR) { in force_small_to_zero()
37 if (SkScalarAbs(ret.fY) < FLT_EPSILON_ORDERABLE_ERR) { in force_small_to_zero()
H A DSkPathOpsCubic.cpp728 if (SkScalarAbs(cubic[index]) < FLT_EPSILON_ORDERABLE_ERR) { in toFloatPoints()