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

  /external/skia/tests/
PathOpsTypesTest.cpp 18 bool equal = RoughlyEqualUlps(roughlyTests[index][0], roughlyTests[index][1]);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsPoint.h 106 if (!RoughlyEqualUlps(fX, a.fX) || !RoughlyEqualUlps(fY, a.fY)) {
126 if (!RoughlyEqualUlps(a.fX, b.fX) || !RoughlyEqualUlps(a.fY, b.fY)) {
143 if (!RoughlyEqualUlps(fX, a.fX) || !RoughlyEqualUlps(fY, a.fY)) {
187 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance?
SkPathOpsTypes.h 58 bool RoughlyEqualUlps(float a, float b);
59 inline bool RoughlyEqualUlps(double a, double b) {
60 return RoughlyEqualUlps(SkDoubleToScalar(a), SkDoubleToScalar(b));
SkPathOpsLine.cpp 107 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance?
SkPathOpsTypes.cpp 120 bool RoughlyEqualUlps(float a, float b) {
  /external/skia/src/pathops/
SkPathOpsPoint.h 106 if (!RoughlyEqualUlps(fX, a.fX) || !RoughlyEqualUlps(fY, a.fY)) {
126 if (!RoughlyEqualUlps(a.fX, b.fX) || !RoughlyEqualUlps(a.fY, b.fY)) {
143 if (!RoughlyEqualUlps(fX, a.fX) || !RoughlyEqualUlps(fY, a.fY)) {
187 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance?
SkPathOpsTypes.h 58 bool RoughlyEqualUlps(float a, float b);
59 inline bool RoughlyEqualUlps(double a, double b) {
60 return RoughlyEqualUlps(SkDoubleToScalar(a), SkDoubleToScalar(b));
SkPathOpsLine.cpp 107 return RoughlyEqualUlps(largest, largest + dist); // is the dist within ULPS tolerance?
SkPathOpsTypes.cpp 120 bool RoughlyEqualUlps(float a, float b) {

Completed in 439 milliseconds