/external/eigen/unsupported/test/ |
D | cxx11_tensor_fixed_size.cpp | 40 VERIFY_IS_APPROX(scalar3(), sqrtf(7.0)); in test_0d() 41 VERIFY_IS_APPROX(scalar4(), sqrtf(13.0)); in test_0d() 83 VERIFY_IS_APPROX(vec3(0), sqrtf(4.0)); in test_1d() 84 VERIFY_IS_APPROX(vec3(1), sqrtf(8.0)); in test_1d() 85 VERIFY_IS_APPROX(vec3(2), sqrtf(15.0)); in test_1d() 86 VERIFY_IS_APPROX(vec3(3), sqrtf(16.0)); in test_1d() 87 VERIFY_IS_APPROX(vec3(4), sqrtf(23.0)); in test_1d() 88 VERIFY_IS_APPROX(vec3(5), sqrtf(42.0)); in test_1d() 90 VERIFY_IS_APPROX(vec4(0), sqrtf(0.0)); in test_1d() 91 VERIFY_IS_APPROX(vec4(1), sqrtf(1.0)); in test_1d() [all …]
|
D | cxx11_tensor_mixed_indices.cpp | 34 VERIFY_IS_APPROX(vec3(0), sqrtf(4.0)); in test_simple() 35 VERIFY_IS_APPROX(vec3(1), sqrtf(8.0)); in test_simple() 36 VERIFY_IS_APPROX(vec3(2), sqrtf(15.0)); in test_simple() 37 VERIFY_IS_APPROX(vec3(3), sqrtf(16.0)); in test_simple() 38 VERIFY_IS_APPROX(vec3(4), sqrtf(23.0)); in test_simple() 39 VERIFY_IS_APPROX(vec3(5), sqrtf(42.0)); in test_simple()
|
D | cxx11_tensor_expr.cpp | 39 VERIFY_IS_APPROX(vec3(0), sqrtf(4.0)); in test_1d() 40 VERIFY_IS_APPROX(vec3(1), sqrtf(8.0)); in test_1d() 41 VERIFY_IS_APPROX(vec3(2), sqrtf(15.0)); in test_1d() 42 VERIFY_IS_APPROX(vec3(3), sqrtf(16.0)); in test_1d() 43 VERIFY_IS_APPROX(vec3(4), sqrtf(23.0)); in test_1d() 44 VERIFY_IS_APPROX(vec3(5), sqrtf(42.0)); in test_1d() 152 VERIFY_IS_APPROX(mat6(i,j,k), sqrtf(val) * 3.14f); in test_3d()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/PartiallyInlineLibCalls/ |
D | nobuiltin.ll | 6 ; CHECK: call{{.*}}@sqrtf 7 ; CHECK-NOT: call{{.*}}@sqrtf 8 %res = tail call float @sqrtf(float %val) nobuiltin 12 declare float @sqrtf(float)
|
D | bad-prototype.ll | 7 declare float @sqrtf() 19 ; CHECK: call{{.*}}@sqrtf 20 ; CHECK-NOT: call{{.*}}@sqrtf 21 %r = call float @sqrtf()
|
/external/llvm/test/CodeGen/Mips/llvm-ir/ |
D | sqrt.ll | 7 %sqrtf = tail call float @sqrtf(float %value) #0 8 ret float %sqrtf 11 declare float @sqrtf(float)
|
/external/llvm/test/Transforms/InstSimplify/ |
D | 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/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/PartiallyInlineLibCalls/X86/ |
D | good-prototype.ll | 8 ; CHECK-NEXT: [[RES:%.*]] = tail call float @sqrtf(float [[VAL:%.*]]) #0 12 ; CHECK-NEXT: [[TMP1:%.*]] = tail call float @sqrtf(float [[VAL]]) 19 %res = tail call float @sqrtf(float %val) 23 declare float @sqrtf(float)
|
/external/eigen/Eigen/src/Core/arch/CUDA/ |
D | MathFunctions.h | 62 return make_float4(sqrtf(a.x), sqrtf(a.y), sqrtf(a.z), sqrtf(a.w));
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstCombine/ |
D | 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)
|
D | 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(
|
D | win-math.ll | 216 ; WIN32-NOT: float @sqrtf 219 ; WIN64: float @sqrtf 222 ; MINGW32: float @sqrtf 225 ; MINGW64: float @sqrtf 278 ; win32 lacks sqrtf&fabsf, win64 lacks fabsf, but 282 ; WIN32-NOT: float @sqrtf 286 ; WIN64: float @sqrtf 291 ; MINGW32: float @sqrtf 295 ; MINGW64: float @sqrtf
|
/external/llvm/test/Transforms/InstCombine/ |
D | 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)
|
D | 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(
|
D | win-math.ll | 216 ; WIN32-NOT: float @sqrtf 219 ; WIN64: float @sqrtf 222 ; MINGW32: float @sqrtf 225 ; MINGW64: float @sqrtf 277 ; win32 lacks sqrtf&fabsf, win64 lacks fabsf 280 ; WIN32-NOT: float @sqrtf 283 ; WIN64-NOT: float @sqrtf 286 ; MINGW32: float @sqrtf 290 ; MINGW64: float @sqrtf
|
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/ |
D | 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-7.0/llvm/test/CodeGen/Mips/llvm-ir/ |
D | sqrt.ll | 12 %sqrtf = tail call float @sqrtf(float %value) #0 13 ret float %sqrtf 16 declare float @sqrtf(float)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | vector-sqrt.ll | 46 %call = tail call float @sqrtf(float %0) #2 49 %call2 = tail call float @sqrtf(float %1) #2 52 %call4 = tail call float @sqrtf(float %2) #2 55 %call6 = tail call float @sqrtf(float %3) #2 64 declare float @sqrtf(float) local_unnamed_addr #1
|
D | sqrt-partial.ll | 21 ; CHECK-NEXT: jmp sqrtf # TAILCALL 22 %res = tail call float @sqrtf(float %val) 41 declare float @sqrtf(float)
|
D | pr26625.ll | 9 %call = tail call float @sqrtf(float %f) #1 17 declare float @sqrtf(float) #0
|
/external/clang/test/CodeGen/ |
D | 2009-09-24-SqrtErrno.c | 5 float sqrtf(float x); 11 return sqrtf(X); in foo()
|
D | 2005-07-20-SqrtNoErrno.c | 4 float sqrtf(float x); 9 return sqrtf(X); in foo()
|
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/ |
D | 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/tensorflow/tensorflow/examples/android/jni/object_tracking/ |
D | config.h | 227 static const float kScanScaleFactor = sqrtf(2.0f); 234 static const float kLockedScaleFactor = 1 / sqrtf(2.0f); 241 static const float kLastKnownPositionScaleFactor = 1.0f / sqrtf(2.0f);
|
/external/llvm/test/CodeGen/X86/ |
D | pr26625.ll | 9 %call = tail call float @sqrtf(float %f) #1 17 declare float @sqrtf(float) #0
|