HomeSort by relevance Sort by last modified time
    Searched refs:sqrtf (Results 1 - 25 of 241) sorted by null

1 2 3 4 5 6 7 8 910

  /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);
libcalls.c 13 // CHECK-YES: call float @sqrtf
14 // CHECK-NO: call float @sqrtf
15 float l0 = sqrtf(a0);
26 // CHECK-YES: declare float @sqrtf(float)
29 // CHECK-NO: declare float @sqrtf(float) [[NUW_RN:#[0-9]+]]
  /bionic/libm/x86_64/
sqrtf.S 33 ENTRY(sqrtf) function
36 END(sqrtf)
  /bionic/libm/arm/
e_sqrtf.S 34 ENTRY(sqrtf) function
39 END(sqrtf)
  /bionic/libm/arm64/
sqrt.S 24 ENTRY(sqrtf) function
27 END(sqrtf)
  /bionic/libm/x86/
sqrtf.S 33 ENTRY(sqrtf) function
39 END(sqrtf)
  /frameworks/base/media/mca/filterfw/native/core/
statistics.cpp 43 pdf_denom_ = sqrtf(M_PI * exp_denom_);
47 return sqrtf(var_);
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
normal_distribution.h 31 mPreComputedNonExpPart(1.0f / sqrtf(2.0f * M_PI_F
  /frameworks/native/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 );
  /hardware/akm/AK8975_FS/akmdfs/AKFS_APIs_8975/
AKFS_Math.h 44 #define AKFS_SQRT(x) sqrtf(x)
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acosf.c 59 s = sqrtf(z);
66 s = sqrtf(z);
catrigf.c 103 *rx = sqrtf(x);
106 *rx = log1pf(Am1 + sqrtf(Am1 * (A + 1)));
108 *rx = x / sqrtf((1 - y) * (1 + y));
110 *rx = log1pf((y - 1) + sqrtf((y - 1) * (y + 1)));
113 *rx = logf(A + sqrtf(A * A - 1));
131 *sqrt_A2my2 = sqrtf(x) * sqrtf((A + y) / 2);
134 *sqrt_A2my2 = sqrtf(Amy * (A + y));
137 sqrtf((y + 1) * (y - 1));
140 *sqrt_A2my2 = sqrtf((1 - y) * (1 + y))
    [all...]
s_ctanhf.c 72 rho = sqrtf(1 + s * s);
e_j0f.c 65 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(x);
68 z = invsqrtpi*(u*cc-v*ss)/sqrtf(x);
139 if(ix>0x80000000) z = (invsqrtpi*ss)/sqrtf(x);
142 z = invsqrtpi*(u*ss+v*cc)/sqrtf(x);
e_j1f.c 66 if(ix>0x80000000) z = (invsqrtpi*cc)/sqrtf(y);
69 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y);
132 if(ix>0x48000000) z = (invsqrtpi*ss)/sqrtf(x);
135 z = invsqrtpi*(u*ss+v*cc)/sqrtf(x);
  /hardware/invensense/6515/libsensors_iio/software/core/driver/include/
mlmath.h 71 #define sqrtf(x) ml_sqrt(x) macro
  /hardware/invensense/65xx/libsensors_iio/software/core/driver/include/
mlmath.h 71 #define sqrtf(x) ml_sqrt(x) macro
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 86 case LibFunc::sqrtf:
  /external/skia/bench/
ImageFilterCollapse.cpp 94 table3[i] = static_cast<uint8_t>(sqrtf(fi) * 255);
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro

Completed in 962 milliseconds

1 2 3 4 5 6 7 8 910