/external/clang/test/CodeGen/ |
2005-07-20-SqrtNoErrno.c | 4 float sqrtf(float x); 7 // CHECK: call float @sqrtf(float % 9 return sqrtf(X);
|
2009-09-24-SqrtErrno.c | 5 float sqrtf(float x); 9 // CHECK: call float @sqrtf 11 return sqrtf(X);
|
arm-vfp-asm-constraint.c | 30 float sqrtf(float x) { // CHECK-LABEL: @sqrtf( function
|
/external/llvm/test/CodeGen/Mips/llvm-ir/ |
sqrt.ll | 7 %sqrtf = tail call float @sqrtf(float %value) #0 8 ret float %sqrtf 11 declare float @sqrtf(float)
|
/external/eigen/unsupported/test/ |
cxx11_tensor_mixed_indices.cpp | 34 VERIFY_IS_APPROX(vec3(0), sqrtf(4.0)); 35 VERIFY_IS_APPROX(vec3(1), sqrtf(8.0)); 36 VERIFY_IS_APPROX(vec3(2), sqrtf(15.0)); 37 VERIFY_IS_APPROX(vec3(3), sqrtf(16.0)); 38 VERIFY_IS_APPROX(vec3(4), sqrtf(23.0)); 39 VERIFY_IS_APPROX(vec3(5), sqrtf(42.0));
|
cxx11_tensor_fixed_size.cpp | 40 VERIFY_IS_APPROX(scalar3(), sqrtf(7.0)); 41 VERIFY_IS_APPROX(scalar4(), sqrtf(13.0)); 83 VERIFY_IS_APPROX(vec3(0), sqrtf(4.0)); 84 VERIFY_IS_APPROX(vec3(1), sqrtf(8.0)); 85 VERIFY_IS_APPROX(vec3(2), sqrtf(15.0)); 86 VERIFY_IS_APPROX(vec3(3), sqrtf(16.0)); 87 VERIFY_IS_APPROX(vec3(4), sqrtf(23.0)); 88 VERIFY_IS_APPROX(vec3(5), sqrtf(42.0)); 90 VERIFY_IS_APPROX(vec4(0), sqrtf(0.0)); 91 VERIFY_IS_APPROX(vec4(1), sqrtf(1.0)) [all...] |
/external/llvm/test/Transforms/InstCombine/ |
no_cgscc_assert.ll | 4 ; When the call to sqrtf is replaced by an intrinsic call to fabs, 9 %call1 = call fast float @sqrtf(float %mul) 17 declare float @sqrtf(float)
|
fold-sqrt-sqrtf.ll | 4 ; Instcombine tries to fold (fptrunc (sqrt (fpext x))) -> (sqrtf x), but this 5 ; shouldn't fold when sqrtf isn't available.
|
inline-intrinsic-assert.ll | 18 %call1 = call fast float @sqrtf(float %call) 27 declare float @sqrtf(float)
|
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(
|
/bionic/libm/arm64/ |
sqrt.S | 24 ENTRY(sqrtf) function 27 END(sqrtf)
|
/external/llvm/test/CodeGen/X86/ |
pr26625.ll | 9 %call = tail call float @sqrtf(float %f) #1 17 declare float @sqrtf(float) #0
|
/external/swiftshader/third_party/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/swiftshader/third_party/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/Transforms/InstSimplify/ |
floating-point-arithmetic.ll | 74 declare float @sqrtf(float) 81 %1 = call float @sqrtf(float %x) 82 %2 = call float @sqrtf(float %1) 83 %3 = call float @sqrtf(float %2) 84 %4 = call float @sqrtf(float %3) 85 %5 = call float @sqrtf(float %4) 86 %6 = call float @sqrtf(float %5)
|
/external/eigen/Eigen/src/Core/arch/CUDA/ |
MathFunctions.h | 62 return make_float4(sqrtf(a.x), sqrtf(a.y), sqrtf(a.z), sqrtf(a.w));
|
/external/swiftshader/third_party/LLVM/test/CodeGen/XCore/ |
sqrt.ll | 2 ; RUN: grep "bl sqrtf" %t1.s | count 1
|
/bionic/libm/x86_64/ |
sqrtf.S | 33 ENTRY(sqrtf) function 36 END(sqrtf)
|
/device/google/contexthub/firmware/os/cpu/cortexm4/inc/cpu/ |
nanohub_math.h | 25 #define sqrtf arm_sqrtf macro 46 return atan2f(x, sqrtf(1.0f - x * x));
|
/frameworks/base/media/mca/filterfw/native/core/ |
statistics.cpp | 43 pdf_denom_ = sqrtf(M_PI * exp_denom_); 47 return sqrtf(var_);
|
/device/google/contexthub/firmware/os/algos/common/math/ |
quat.c | 26 q->x = sqrtf(clamp(Hx - My - Az + 1.0f) * 0.25f); 27 q->y = sqrtf(clamp(-Hx + My - Az + 1.0f) * 0.25f); 28 q->z = sqrtf(clamp(-Hx - My + Az + 1.0f) * 0.25f); 29 q->w = sqrtf(clamp(Hx + My + Az + 1.0f) * 0.25f); 70 1.0f / sqrtf(q->x * q->x + q->y * q->y + q->z * q->z + q->w * q->w);
|
/external/clang/test/Driver/ |
mrecip.c | 37 // RUN: %clang -### -S %s -mrecip=divf,sqrtd,vec-divd,vec-sqrtf 2>&1 | FileCheck --check-prefix=RECIP8 %s 38 // RECIP8: "-mrecip=divf,sqrtd,vec-divd,vec-sqrtf" 45 // RUN: %clang -### -S %s -mrecip=sqrtf:3 2>&1 | FileCheck --check-prefix=RECIP10 %s 46 // RECIP10: "-mrecip=sqrtf:3" 51 // RUN: %clang -### -S %s -mrecip=divd:1,!sqrtf:2,vec-divf:9,vec-sqrtd:0 2>&1 | FileCheck --check-prefix=RECIP12 %s 52 // RECIP12: "-mrecip=divd:1,!sqrtf:2,vec-divf:9,vec-sqrtd:0" 62 // RUN: %clang -### -S %s -mrecip=sqrt,sqrtf 2>&1 | FileCheck --check-prefix=RECIP15 %s
|
/development/ndk/platforms/android-13/arch-arm/symbols/ |
libm.so.functions.txt | 143 sqrtf
|
/development/ndk/platforms/android-13/arch-mips/symbols/ |
libm.so.functions.txt | 143 sqrtf
|
/development/ndk/platforms/android-9/arch-arm/symbols/ |
libm.so.functions.txt | 140 sqrtf
|