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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Headers/
tgmath.c 24 // fabs
26 _Static_assert(sizeof(fabs(f)) == sizeof(f), "");
27 _Static_assert(sizeof(fabs(d)) == sizeof(d), "");
28 _Static_assert(sizeof(fabs(l)) == sizeof(l), "");
30 _Static_assert(sizeof(fabs(fc)) == sizeof(f), "");
31 _Static_assert(sizeof(fabs(dc)) == sizeof(d), "");
32 _Static_assert(sizeof(fabs(lc)) == sizeof(l), "");
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabs.c 18 * fabs(x) returns the absolute value of x.
25 fabs(double x) function
e_cosh.c 58 t = expm1(fabs(x));
66 t = __ieee754_exp(fabs(x));
71 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x));
75 return __ldexp_exp(fabs(x), -1);
e_sinh.c 59 t = expm1(fabs(x));
65 if (ix < 0x40862E42) return h*__ieee754_exp(fabs(x));
69 return h*2.0*__ldexp_exp(fabs(x), -1);
s_asinh.c 49 w = __ieee754_log(fabs(x))+ln2;
51 t = fabs(x);
55 w =log1p(fabs(x)+t/(one+__ieee754_sqrt(one+t)));
s_csqrt.c 76 return (cpack(fabs(b - b), copysign(a, b)));
86 if (fabs(a) >= THRESH || fabs(b) >= THRESH) {
100 result = cpack(fabs(b) / (2 * t), copysign(t, b));
s_tanh.c 66 t = expm1(two*fabs(x));
69 t = expm1(-two*fabs(x));
s_logb.c 36 if((ix|lx)==0) return -1.0/fabs(x);
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
Cone.cpp 60 double absAngle = fabs(angle);
63 double absInnerAngle = fabs(m_innerAngle) / 2.0;
64 double absOuterAngle = fabs(m_outerAngle) / 2.0;
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.cpp 55 return fabs(m_width) < numeric_limits<float>::epsilon() && fabs(m_height) < numeric_limits<float>::epsilon();
  /external/chromium_org/content/common/
page_zoom.cc 17 return (std::fabs(value_a - value_b) <= kEpsilon);
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsTypes.h 11 #include <math.h> // for fabs, sqrt
97 return fabs(x) < FLT_EPSILON;
101 return fabs(x) < DBL_EPSILON_ERR;
105 return fabs(x) < DBL_EPSILON_SUBDIVIDE_ERR;
109 return fabs(x) < FLT_EPSILON;
113 return fabs(x) < FLT_EPSILON_CUBED;
117 return fabs(x) < FLT_EPSILON_HALF;
121 return fabs(x) < FLT_EPSILON_DOUBLE;
125 return fabs(x) < FLT_EPSILON_SQUARED;
129 return fabs(x) < FLT_EPSILON_SQRT
    [all...]
  /external/skia/src/pathops/
SkPathOpsTypes.h 11 #include <math.h> // for fabs, sqrt
97 return fabs(x) < FLT_EPSILON;
101 return fabs(x) < DBL_EPSILON_ERR;
105 return fabs(x) < DBL_EPSILON_SUBDIVIDE_ERR;
109 return fabs(x) < FLT_EPSILON;
113 return fabs(x) < FLT_EPSILON_CUBED;
117 return fabs(x) < FLT_EPSILON_HALF;
121 return fabs(x) < FLT_EPSILON_DOUBLE;
125 return fabs(x) < FLT_EPSILON_SQUARED;
129 return fabs(x) < FLT_EPSILON_SQRT
    [all...]
  /external/chromium_org/third_party/smhasher/src/
AvalancheTest.cpp 19 b = fabs(b*2 - 1);
45 double d = fabs(c * 2 - 1);
  /external/chromium_org/ppapi/shared_impl/
time_conversion_unittest.cc 34 EXPECT_GE(kTimeSecondsSlop, fabs(converted_one_second_from_now - 1));
43 EXPECT_GE(kTimeSecondsSlop, fabs(converted - event_now));
64 EXPECT_GE(kTimeSecondsSlop, fabs(converted_one_second_from_epoch - 1));
67 EXPECT_GE(kTimeSecondsSlop, fabs(ppapi::TimeToPPTime(epoch) - 0.0));
  /external/compiler-rt/lib/ppc/
gcc_qadd.c 58 if (fabs(A) <= fabs(B))
67 if (fabs(a) <= fabs(b))
gcc_qsub.c 58 if (fabs(A) <= fabs(B))
67 if (fabs(a) <= fabs(b))
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 66 using ::fabs;
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
UnitBezier.h 80 if (fabs (x2) < epsilon)
83 if (fabs(d2) < 1e-6)
95 if (fabs(x2 - x) < epsilon)
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 196 best=fabs(s[0]);pos=0;
197 t=fabs(s[1]);if(t>best){best=t;pos=1;}
198 t=fabs(s[2]);if(t>best){pos=2;}
207 best=fabs(s[0]);pos=0;
208 t=fabs(s[1]);if(t>best){best=t;pos=1;}
209 t=fabs(s[2]);if(t>best){best=t;pos=2;}
210 t=fabs(s[3]);if(t>best){best=t;pos=3;}
211 t=fabs(s[4]);if(t>best){best=t;pos=4;}
212 t=fabs(s[5]);if(t>best){best=t;pos=5;}
213 t=fabs(s[6]);if(t>best){best=t;pos=6;
    [all...]
  /packages/apps/Camera2/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 196 best=fabs(s[0]);pos=0;
197 t=fabs(s[1]);if(t>best){best=t;pos=1;}
198 t=fabs(s[2]);if(t>best){pos=2;}
207 best=fabs(s[0]);pos=0;
208 t=fabs(s[1]);if(t>best){best=t;pos=1;}
209 t=fabs(s[2]);if(t>best){best=t;pos=2;}
210 t=fabs(s[3]);if(t>best){best=t;pos=3;}
211 t=fabs(s[4]);if(t>best){best=t;pos=4;}
212 t=fabs(s[5]);if(t>best){best=t;pos=5;}
213 t=fabs(s[6]);if(t>best){best=t;pos=6;
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_indexing.h 196 best=fabs(s[0]);pos=0;
197 t=fabs(s[1]);if(t>best){best=t;pos=1;}
198 t=fabs(s[2]);if(t>best){pos=2;}
207 best=fabs(s[0]);pos=0;
208 t=fabs(s[1]);if(t>best){best=t;pos=1;}
209 t=fabs(s[2]);if(t>best){best=t;pos=2;}
210 t=fabs(s[3]);if(t>best){best=t;pos=3;}
211 t=fabs(s[4]);if(t>best){best=t;pos=4;}
212 t=fabs(s[5]);if(t>best){best=t;pos=5;}
213 t=fabs(s[6]);if(t>best){best=t;pos=6;
    [all...]
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Geometry.h 78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
114 if (fabs( m1 - m2 ) > 1.e-6)
124 mass = fabs( (y1 - y0) * (x2 - x0) );
  /packages/apps/Camera2/jni/feature_mos/src/mosaic/
Geometry.h 78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
114 if (fabs( m1 - m2 ) > 1.e-6)
124 mass = fabs( (y1 - y0) * (x2 - x0) );
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Geometry.h 78 mass = fabs((y1 - y0) * (x2 - x0)); // Special case 1a
82 mass = fabs((y1 - y0) * (x1 - x0)); // Special case 1b
89 mass = fabs((x2 - x0) * (y2 - y0)); // Special case 2a
93 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 2a
98 mass = fabs((x1 - x0) * (y2 - y0)); // Special case 3
114 if (fabs( m1 - m2 ) > 1.e-6)
124 mass = fabs( (y1 - y0) * (x2 - x0) );

Completed in 1071 milliseconds

1 2 3 4 5 6 7 8 91011>>