HomeSort by relevance Sort by last modified time
    Searched refs:FLT_EPSILON (Results 1 - 25 of 283) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/skia/tests/
PathOpsQuadIntersectionTestData.cpp 47 static const double F = FLT_EPSILON * 3;
48 static const double H = FLT_EPSILON * 4;
49 static const double J = FLT_EPSILON * 5;
50 static const double K = FLT_EPSILON * 8; // INVESTIGATE: why are larger multiples necessary?
PathOpsCubicIntersectionTestData.cpp 12 static const double D = FLT_EPSILON / 2;
13 static const double G = FLT_EPSILON / 3;
14 static const double N = -FLT_EPSILON / 2;
15 static const double M = -FLT_EPSILON / 3;
49 {{{1 + FLT_EPSILON * 2, 1}, {1, FLT_EPSILON * 2}, {1, 1}, {1, 1}}},
50 {{{1 + FLT_EPSILON * 2, 1}, {1 - FLT_EPSILON * 2, 1}, {1, 1}, {1, 1}}}
159 static const double E = FLT_EPSILON * 2;
160 static const double F = FLT_EPSILON * 3
    [all...]
  /external/skia/tests/
PathOpsQuadIntersectionTestData.cpp 47 static const double F = FLT_EPSILON * 3;
48 static const double H = FLT_EPSILON * 4;
49 static const double J = FLT_EPSILON * 5;
50 static const double K = FLT_EPSILON * 8; // INVESTIGATE: why are larger multiples necessary?
PathOpsCubicIntersectionTestData.cpp 12 static const double D = FLT_EPSILON / 2;
13 static const double G = FLT_EPSILON / 3;
14 static const double N = -FLT_EPSILON / 2;
15 static const double M = -FLT_EPSILON / 3;
49 {{{1 + FLT_EPSILON * 2, 1}, {1, FLT_EPSILON * 2}, {1, 1}, {1, 1}}},
50 {{{1 + FLT_EPSILON * 2, 1}, {1 - FLT_EPSILON * 2, 1}, {1, 1}, {1, 1}}}
159 static const double E = FLT_EPSILON * 2;
160 static const double F = FLT_EPSILON * 3
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsTypes.h 10 #include <float.h> // for FLT_EPSILON
81 // FLT_EPSILON == 1.19209290E-07 == 1 / (2 ^ 23)
83 const double FLT_EPSILON_CUBED = FLT_EPSILON * FLT_EPSILON * FLT_EPSILON;
84 const double FLT_EPSILON_HALF = FLT_EPSILON / 2;
85 const double FLT_EPSILON_DOUBLE = FLT_EPSILON * 2;
86 const double FLT_EPSILON_ORDERABLE_ERR = FLT_EPSILON * 16;
87 const double FLT_EPSILON_SQUARED = FLT_EPSILON * FLT_EPSILON;
    [all...]
  /external/skia/src/pathops/
SkPathOpsTypes.h 10 #include <float.h> // for FLT_EPSILON
81 // FLT_EPSILON == 1.19209290E-07 == 1 / (2 ^ 23)
83 const double FLT_EPSILON_CUBED = FLT_EPSILON * FLT_EPSILON * FLT_EPSILON;
84 const double FLT_EPSILON_HALF = FLT_EPSILON / 2;
85 const double FLT_EPSILON_DOUBLE = FLT_EPSILON * 2;
86 const double FLT_EPSILON_ORDERABLE_ERR = FLT_EPSILON * 16;
87 const double FLT_EPSILON_SQUARED = FLT_EPSILON * FLT_EPSILON;
    [all...]
  /external/chromium_org/third_party/skia/experimental/Intersection/
DataTypes.h 10 #include <float.h> // for FLT_EPSILON
38 // FLT_EPSILON == 1.19209290E-07 == 1 / (2 ^ 23)
40 const double FLT_EPSILON_CUBED = FLT_EPSILON * FLT_EPSILON * FLT_EPSILON;
41 const double FLT_EPSILON_HALF = FLT_EPSILON / 2;
42 const double FLT_EPSILON_SQUARED = FLT_EPSILON * FLT_EPSILON;
43 const double FLT_EPSILON_SQRT = sqrt(FLT_EPSILON);
44 const double FLT_EPSILON_INVERSE = 1 / FLT_EPSILON;
    [all...]
thingsToDo.txt 249 if ((step > 0 ? span.fT - fromT : fromT - span.fT) >= FLT_EPSILON ) {
395 nextOther = other->fTs[start->fOtherIndex].fT > 1 - FLT_EPSILON ? NULL : other;
398 nextOther = other->fTs[end->fOtherIndex].fT < FLT_EPSILON ? NULL : other;
406 bool checkNext = !next && (step < 0 ? span.fT < FLT_EPSILON
407 && span.fOtherT > 1 - FLT_EPSILON : span.fT > 1 - FLT_EPSILON
408 && span.fOtherT < FLT_EPSILON);
409 bool checkOther = !nextOther && (step < 0 ? fabs(span.fT - start->fT) < FLT_EPSILON
410 && span.fOtherT < FLT_EPSILON : fabs(span.fT - end->fT) < FLT_EPSILON
    [all...]
QuadraticLineSegments.cpp 32 double segments = sqrt(dist / (8 * FLT_EPSILON));
  /external/skia/experimental/Intersection/
DataTypes.h 10 #include <float.h> // for FLT_EPSILON
38 // FLT_EPSILON == 1.19209290E-07 == 1 / (2 ^ 23)
40 const double FLT_EPSILON_CUBED = FLT_EPSILON * FLT_EPSILON * FLT_EPSILON;
41 const double FLT_EPSILON_HALF = FLT_EPSILON / 2;
42 const double FLT_EPSILON_SQUARED = FLT_EPSILON * FLT_EPSILON;
43 const double FLT_EPSILON_SQRT = sqrt(FLT_EPSILON);
44 const double FLT_EPSILON_INVERSE = 1 / FLT_EPSILON;
    [all...]
thingsToDo.txt 249 if ((step > 0 ? span.fT - fromT : fromT - span.fT) >= FLT_EPSILON ) {
395 nextOther = other->fTs[start->fOtherIndex].fT > 1 - FLT_EPSILON ? NULL : other;
398 nextOther = other->fTs[end->fOtherIndex].fT < FLT_EPSILON ? NULL : other;
406 bool checkNext = !next && (step < 0 ? span.fT < FLT_EPSILON
407 && span.fOtherT > 1 - FLT_EPSILON : span.fT > 1 - FLT_EPSILON
408 && span.fOtherT < FLT_EPSILON);
409 bool checkOther = !nextOther && (step < 0 ? fabs(span.fT - start->fT) < FLT_EPSILON
410 && span.fOtherT < FLT_EPSILON : fabs(span.fT - end->fT) < FLT_EPSILON
    [all...]
QuadraticLineSegments.cpp 32 double segments = sqrt(dist / (8 * FLT_EPSILON));
  /external/libcxx/test/containers/unord/unord.multiset/
load_factor.pass.cpp 41 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
66 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
  /external/libcxx/test/containers/unord/unord.set/
load_factor.pass.cpp 41 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
66 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
  /external/libcxx/test/depr/depr.c.headers/
float_h.pass.cpp 114 #ifndef FLT_EPSILON
115 #error FLT_EPSILON not defined
  /external/libcxx/test/language.support/support.limits/c.limits/
cfloat.pass.cpp 114 #ifndef FLT_EPSILON
115 #error FLT_EPSILON not defined
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/
load_factor.pass.cpp 41 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
66 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/
load_factor.pass.cpp 41 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
66 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/c.limits/
cfloat.pass.cpp 114 #ifndef FLT_EPSILON
115 #error FLT_EPSILON not defined
  /external/chromium_org/third_party/skia/src/core/
SkBitmapFilter.h 145 if (x > -FLT_EPSILON && x < FLT_EPSILON) {
165 if (x > -FLT_EPSILON && x < FLT_EPSILON) {
  /external/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
epsilon.pass.cpp 51 test<float>(FLT_EPSILON);
  /external/skia/src/core/
SkBitmapFilter.h 145 if (x > -FLT_EPSILON && x < FLT_EPSILON) {
165 if (x > -FLT_EPSILON && x < FLT_EPSILON) {
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
epsilon.pass.cpp 51 test<float>(FLT_EPSILON);
  /external/clang/lib/Headers/
float.h 61 # undef FLT_EPSILON
110 #define FLT_EPSILON __FLT_EPSILON__
  /external/libcxx/test/containers/unord/unord.map/
load_factor.pass.cpp 42 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
67 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);

Completed in 319 milliseconds

1 2 3 4 5 6 7 8 91011>>