/prebuilts/ndk/7/sources/cxx-stl/system/include/ |
cmath | 68 using ::fabs;
|
/prebuilts/ndk/8/sources/cxx-stl/gabi++/include/ |
cmath | 68 using ::fabs;
|
/prebuilts/ndk/8/sources/cxx-stl/system/include/ |
cmath | 68 using ::fabs;
|
/prebuilts/ndk/9/sources/cxx-stl/EH/gabi++/include/ |
cmath | 68 using ::fabs;
|
/prebuilts/ndk/9/sources/cxx-stl/system/include/ |
cmath | 68 using ::fabs;
|
/frameworks/av/media/libeffects/loudness/dsp/core/ |
dynamic_range_compression.cpp | 79 const float max_abs_x = std::max(std::fabs(x), kMinLogAbsValue); 107 const float max_abs_x = std::max(std::fabs(*x1), 108 std::max(std::fabs(*x2), kMinLogAbsValue));
|
/external/chromium_org/native_client_sdk/src/examples/demo/flock/ |
frame_counter.cc | 31 if (fabs(elapsed_time) > std::numeric_limits<double>::epsilon()) {
|
/external/compiler-rt/lib/ppc/ |
DD.h | 23 fabs(double x) function
|
/packages/apps/Gallery2/jni/filters/ |
edge.c | 68 if (fabs(tmp) > fabs(bestx)) { 82 if (fabs(tmp) > fabs(besty)) {
|
/external/chromium_org/ash/wm/gestures/ |
overview_gesture_handler.cc | 55 if (std::fabs(scroll_x_) >= std::fabs(scroll_y_)) {
|
/external/chromium_org/ui/views/animation/ |
scroll_animator.cc | 49 float v = std::max(fabs(velocity_x), fabs(velocity_y));
|
/external/clang/test/CodeGen/ |
libcall-declarations.c | 32 double fabs(double); 82 exp, expl, expf, exp2, exp2l, exp2f, fabs, fabsl, fabsf, floor, floorl, 116 // CHECK-NOERRNO: declare double @fabs(double) [[NUW]] 168 // CHECK-ERRNO: declare double @fabs(double) [[NUW]]
|
/ndk/sources/cxx-stl/llvm-libc++/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);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/ |
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);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.cnstr/ |
assign_init.pass.cpp | 59 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON); 92 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/unord.set.cnstr/ |
assign_init.pass.cpp | 59 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON); 92 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
|
copy.pass.cpp | 64 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON); 103 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON); 143 assert(fabs(c.load_factor() - (float)c.size()/c.bucket_count()) < FLT_EPSILON);
|
/external/srec/srec/clib/ |
jacobi.c | 112 g = 100.0 * fabs(a[i][i]); 115 if ((iter >= 4) && (g < EPSILON*fabs(d[i])) 116 && (g < EPSILON*fabs(d[j]))) 124 if (g < EPSILON*fabs(h)) 129 t = 1.0 / (fabs(theta) + sqrt(1.0 + theta * theta)); 214 sum += fabs(mat[i][j]);
|
/external/ceres-solver/internal/ceres/ |
gradient_checking_cost_function.cc | 70 *absolute_error = fabs(x - y); 71 *relative_error = *absolute_error / max(fabs(x), fabs(y)); 77 return fabs(*relative_error) < fabs(relative_precision);
|
/external/libvorbis/vq/ |
latticebuild.c | 139 if(mindel==-1 || fabs(quantlist[j]-quantlist[i])<mindel) 140 mindel=fabs(quantlist[j]-quantlist[i]); 146 if( fabs(rint(test)-test)>.00001f) break;
|
/external/stlport/stlport/stl/ |
_cmath.h | 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 369 _STLP_DMATH_INLINE(fabs) 390 # if defined (fabs) 391 inline double __stlp_fabs(double __x) { return fabs(__x); } 392 # undef fabs macro 393 inline double fabs(double __x) { return __stlp_fabs(__x); } function 425 { return ::fabs(__x); } 427 _STLP_DEF_MATH_INLINE(abs, fabs) 440 _STLP_DEF_MATH_INLINE(fabs, fabs) [all...] |
/frameworks/av/tools/resampler_tools/ |
fir.cpp | 24 if (fabs(x) == 0.0f) return 1.0f; 35 ax=fabs(x); 184 atten = pow(10, -fabs(atof(optarg))*0.05 );
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_cmath.h | 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 369 _STLP_DMATH_INLINE(fabs) 390 # if defined (fabs) 391 inline double __stlp_fabs(double __x) { return fabs(__x); } 392 # undef fabs macro 393 inline double fabs(double __x) { return __stlp_fabs(__x); } function 425 { return ::fabs(__x); } 427 _STLP_DEF_MATH_INLINE(abs, fabs) 440 _STLP_DEF_MATH_INLINE(fabs, fabs) [all...] |
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_cmath.h | 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 369 _STLP_DMATH_INLINE(fabs) 390 # if defined (fabs) 391 inline double __stlp_fabs(double __x) { return fabs(__x); } 392 # undef fabs macro 393 inline double fabs(double __x) { return __stlp_fabs(__x); } function 425 { return ::fabs(__x); } 427 _STLP_DEF_MATH_INLINE(abs, fabs) 440 _STLP_DEF_MATH_INLINE(fabs, fabs) [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_cmath.h | 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh) 369 _STLP_DMATH_INLINE(fabs) 390 # if defined (fabs) 391 inline double __stlp_fabs(double __x) { return fabs(__x); } 392 # undef fabs macro 393 inline double fabs(double __x) { return __stlp_fabs(__x); } function 425 { return ::fabs(__x); } 427 _STLP_DEF_MATH_INLINE(abs, fabs) 440 _STLP_DEF_MATH_INLINE(fabs, fabs) [all...] |