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

1 2 3 4 5 6 7 8 91011>>

  /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 47 w = __ieee754_log(fabs(x))+ln2;
49 t = fabs(x);
53 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);
e_hypot.c 65 a = fabs(a);
66 b = fabs(b);
73 w = fabs(x+0.0)-fabs(y+0.0);
  /external/webkit/Source/WebCore/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/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))
  /external/webkit/Source/WebCore/webaudio/
AudioParam.cpp 58 if (fabs(m_smoothedValue - m_value) < SnapThreshold) // FIXME: the threshold needs to be adjustable depending on range - but this is OK general purpose value.
  /system/extras/tests/bionic/libstdc++/
test_cmath.cpp 66 using ::fabs;
  /external/webkit/Source/WebCore/platform/graphics/
UnitBezier.h 75 if (fabs (x2) < epsilon)
78 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/Gallery2/jni_mosaic/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/Gallery2/jni_mosaic/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) );
  /external/opencv/cv/src/
cvmatchcontours.cpp 111 double ama = fabs( ma[i] );
112 double amb = fabs( mb[i] );
131 result += fabs( -ama + amb );
141 double ama = fabs( ma[i] );
142 double amb = fabs( mb[i] );
161 result += fabs( -ama + amb );
171 double ama = fabs( ma[i] );
172 double amb = fabs( mb[i] );
191 mmm = fabs( (ama - amb) / ama );
343 t0 = fabs( r11 * w1 + r21 * w2 )
    [all...]
  /external/ceres-solver/internal/ceres/
test_util.cc 53 double absolute_difference = fabs(x - y);
54 double relative_difference = absolute_difference / std::max(fabs(x), fabs(y));
  /external/oprofile/gui/
oprof_start_util.h 29 return fabs(((x1 - x2) / x2)) * 100;
  /external/stlport/stlport/stl/config/
_como.h 97 # define fabsl fabs
129 # define fabsf fabs
130 # define fabsl fabs
169 # define fabsl fabs
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/unord/unord.multiset/
load_factor.pass.cpp 39 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);

Completed in 218 milliseconds

1 2 3 4 5 6 7 8 91011>>