/external/llvm/test/FrontendC/ |
2005-07-20-SqrtNoErrno.c | 8 // CHECK: sqrtf(float %1) nounwind readonly 10 return sqrtf(X);
|
2009-09-24-SqrtErrno.c | 11 return sqrtf(X);
|
/frameworks/base/core/jni/ |
android_util_FloatMath.cpp | 25 static float SqrtF(JNIEnv* env, jobject clazz, float x) { 26 return sqrtf(x); 35 {"sqrt", "(F)F", (void*) MathUtilsGlue::SqrtF}
|
/bionic/libm/i387/ |
e_sqrtf.S | 11 ENTRY(sqrtf) function
|
/external/llvm/test/Transforms/InstCombine/ |
sqrt.ll | 8 ; CHECK: sqrtf( 23 ; CHECK: sqrtf( 33 ; Can't fold (fptrunc (sqrt (fpext x))) -> (sqrtf x) since there is another 39 ; CHECK-NOT: sqrtf(
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
pow-to-sqrt.ll | 8 ; CHECK: %sqrtf = call float @sqrtf(float %x) nounwind readonly 9 ; CHECK: %fabsf = call float @fabsf(float %sqrtf) nounwind readonly
|
/external/llvm/test/CodeGen/XCore/ |
sqrt.ll | 2 ; RUN: grep "bl sqrtf" %t1.s | count 1
|
/bionic/libm/sparc64/ |
e_sqrtf.S | 30 ENTRY(sqrtf) function 33 END(sqrtf)
|
/system/media/mca/filterfw/native/core/ |
statistics.cpp | 43 pdf_denom_ = sqrtf(M_PI * exp_denom_); 47 return sqrtf(var_);
|
/external/clang/test/CodeGen/ |
libcalls.c | 11 // CHECK-YES: call float @sqrtf 12 // CHECK-NO: call float @sqrtf 13 float l0 = sqrtf(a0); 24 // CHECK-YES: declare float @sqrtf(float) 27 // CHECK-NO: declare float @sqrtf(float) readnone
|
/bionic/libm/man/ |
sqrt.3 | 42 .Nm sqrtf 55 .Fn sqrtf "float x" 68 .Fn sqrtf 80 .Fn sqrtf
|
/external/llvm/test/CodeGen/X86/ |
avx-128.ll | 59 %conv1 = tail call float @sqrtf(float %a) nounwind readnone 72 declare float @sqrtf(float) readnone
|
/prebuilt/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/lib/ |
libm.so | |
/bionic/libm/amd64/ |
e_sqrtf.S | 30 ENTRY(sqrtf) function
|
/development/ndk/platforms/android-3/arch-arm/symbols/ |
libm.so.functions.txt | 212 sqrtf
|
/development/ndk/platforms/android-9/arch-x86/symbols/ |
libm.so.functions.txt | 171 sqrtf
|
/frameworks/base/services/sensorservice/ |
quat.h | 71 q.x = sqrtf( clamp( Hx - My - Az + 1) * 0.25f ); 72 q.y = sqrtf( clamp(-Hx + My - Az + 1) * 0.25f ); 73 q.z = sqrtf( clamp(-Hx - My + Az + 1) * 0.25f ); 74 q.w = sqrtf( clamp( Hx + My + Az + 1) * 0.25f );
|
/external/stlport/stlport/stl/config/ |
_gcc.h | 127 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */ 149 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
_gcc.h | 127 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */ 149 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/ |
_gcc.h | 127 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */ 149 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/ |
_gcc.h | 127 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */ 149 /* No *f math fuctions variants (i.e. sqrtf, fabsf, etc.) */
|
/external/webkit/Source/WebCore/platform/graphics/ |
FloatSize.cpp | 42 return sqrtf(diagonalLengthSquared());
|
/external/mesa3d/src/mesa/main/ |
imports.h | 100 *** SQRTF: single-precision square root 103 # define SQRTF(X) _mesa_sqrtf(X) 105 # define SQRTF(X) (float) sqrt((float) (X)) 115 #define INV_SQRTF(X) (1.0F / SQRTF(X)) /* this is faster on a P4 */ 141 #define sqrtf(f) ((float) sqrt(f)) 153 static INLINE float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); } 154 static INLINE float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
|
/external/skia/include/core/ |
SkFloatingPoint.h | 55 #define sk_float_sqrt(x) sqrtf(x)
|
/external/webkit/Source/WebCore/svg/ |
ColorDistance.cpp | 88 return sqrtf(m_redDiff * m_redDiff + m_blueDiff * m_blueDiff + m_greenDiff * m_greenDiff);
|