HomeSort by relevance Sort by last modified time
    Searched refs:RoughlyEqualUlps (Results 1 - 5 of 5) sorted by null

  /external/skia/tests/
PathOpsTypesTest.cpp 18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
  /external/skia/src/pathops/
SkPathOpsPoint.h 151 if (!RoughlyEqualUlps(fX, a.fX) || !RoughlyEqualUlps(fY, a.fY)) {
171 if (!RoughlyEqualUlps(fX, a.fX) || !RoughlyEqualUlps(fY, a.fY)) {
191 if (!RoughlyEqualUlps(a.fX, b.fX) || !RoughlyEqualUlps(a.fY, b.fY)) {
239 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance?
243 if (!RoughlyEqualUlps(a.fX, b.fX) && !RoughlyEqualUlps(a.fY, b.fY)) {
253 return RoughlyEqualUlps((double) largest, largest + dist); // is dist within ULPS tolerance
    [all...]
SkPathOpsTypes.h 281 bool RoughlyEqualUlps(float a, float b);
282 inline bool RoughlyEqualUlps(double a, double b) {
283 return RoughlyEqualUlps(SkDoubleToScalar(a), SkDoubleToScalar(b));
SkPathOpsLine.cpp 78 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance?
SkPathOpsTypes.cpp 156 bool RoughlyEqualUlps(float a, float b) {

Completed in 118 milliseconds