Home
last modified time | relevance | path

Searched refs:sqrtf (Results 1 – 25 of 142) sorted by relevance

123456

/external/eigen/unsupported/test/
Dcxx11_tensor_fixed_size.cpp40 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 …]
Dcxx11_tensor_mixed_indices.cpp34 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()
Dcxx11_tensor_expr.cpp39 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/llvm/test/Transforms/InstSimplify/
Dfloating-point-arithmetic.ll74 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/llvm/test/CodeGen/Mips/llvm-ir/
Dsqrt.ll7 %sqrtf = tail call float @sqrtf(float %value) #0
8 ret float %sqrtf
11 declare float @sqrtf(float)
/external/eigen/Eigen/src/Core/arch/CUDA/
DMathFunctions.h62 return make_float4(sqrtf(a.x), sqrtf(a.y), sqrtf(a.z), sqrtf(a.w));
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/
Dsqrt.ll8 ; 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/InstCombine/
Dsqrt.ll8 ; CHECK: sqrtf(
23 ; CHECK: sqrtf(
33 ; Can't fold (fptrunc (sqrt (fpext x))) -> (sqrtf x) since there is another
39 ; CHECK-NOT: sqrtf(
Dno_cgscc_assert.ll4 ; 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)
Dwin-math.ll216 ; 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
Dfold-sqrt-sqrtf.ll4 ; Instcombine tries to fold (fptrunc (sqrt (fpext x))) -> (sqrtf x), but this
5 ; shouldn't fold when sqrtf isn't available.
Dinline-intrinsic-assert.ll18 %call1 = call fast float @sqrtf(float %call)
27 declare float @sqrtf(float)
/external/swiftshader/third_party/LLVM/test/Transforms/SimplifyLibCalls/
Dpow-to-sqrt.ll8 ; 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/
Dconfig.h227 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/clang/test/CodeGen/
D2005-07-20-SqrtNoErrno.c4 float sqrtf(float x);
9 return sqrtf(X); in foo()
D2009-09-24-SqrtErrno.c5 float sqrtf(float x);
11 return sqrtf(X); in foo()
/external/llvm/test/CodeGen/X86/
Dpr26625.ll9 %call = tail call float @sqrtf(float %f) #1
17 declare float @sqrtf(float) #0
Dsqrt-fastmath.ll2 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=sse2 -recip=!sqrtf,!vec-sqrtf,!divf,!vec-div…
3 ; RUN: llc < %s -mtriple=x86_64-unknown-unknown -mattr=avx -recip=sqrtf,vec-sqrtf | FileCheck %s --…
D2012-10-02-DAGCycle.ll35 %call.i.i.i = tail call float @sqrtf(float 0.000000e+00) nounwind readnone
52 declare float @sqrtf(float) nounwind readnone
/external/tensorflow/tensorflow/core/kernels/
Dquantized_batch_norm_op.cc69 sqrtf(var_value + variance_epsilon)) * in ReferenceBatchNorm()
74 sqrtf(var_value + variance_epsilon)) + in ReferenceBatchNorm()
133 scale_value = (1.0f / sqrtf(var_value + variance_epsilon)) * gamma_value; in FixedPointBatchNorm()
135 scale_value = (1.0f / sqrtf(var_value + variance_epsilon)); in FixedPointBatchNorm()
/external/webrtc/webrtc/common_audio/
Dwindow_generator.cc63 window[length - i - 1] = sqrtf(window[length - i - 1] / sum); in KaiserBesselDerived()
67 window[half - 1] = sqrtf(window[half - 1] / sum); in KaiserBesselDerived()
/external/llvm/test/CodeGen/Mips/
Doptimize-fp-math.ll14 %call = tail call float @sqrtf(float %a)
18 declare float @sqrtf(float)
/external/llvm/test/CodeGen/SystemZ/
Dfp-sqrt-01.ll6 declare float @sqrtf(float)
157 ; Check that a call to the normal sqrtf function is lowered.
164 ; CHECK: jg sqrtf@PLT
165 %res = tail call float @sqrtf(float %val)
/external/llvm/test/CodeGen/XCore/
Dfloat-intrinsics.ll166 define float @sqrtf(float %F) {
167 ; CHECK-LABEL: sqrtf:
168 ; CHECK: bl sqrtf
/external/skia/samplecode/
DSampleAARects.cpp125 canvas->translate(20.0f / sqrtf(2.f), in onDrawContent()
126 20.0f / sqrtf(2.f)); in onDrawContent()

123456