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

1 2 3 4 5 6 7

  /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);
libcall-declarations.c 70 float sqrtf(float);
86 sqrtf, tan, tanl, tanf, trunc, truncl, truncf
154 // CHECK-NOERRNO: declare float @sqrtf(float) nounwind readnone
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) nounwind readnone
  /bionic/libm/sparc64/
e_sqrtf.S 30 ENTRY(sqrtf) function
33 END(sqrtf)
  /bionic/libm/amd64/
e_sqrtf.S 30 ENTRY(sqrtf) function
  /bionic/libm/i387/
e_sqrtf.S 11 ENTRY(sqrtf) function
  /external/webkit/Source/WebCore/platform/graphics/
FloatSize.cpp 42 return sqrtf(diagonalLengthSquared());
FloatPoint.cpp 55 return sqrtf(lengthSquared());
ContextShadow.cpp 196 const float xAxisScale = sqrtf(xUnitChange.width() * xUnitChange.width()
201 const float yAxisScale = sqrtf(yUnitChange.width() * yUnitChange.width()
205 const float scale = sqrtf(xAxisScale * yAxisScale);
  /frameworks/base/media/mca/filterfw/native/core/
statistics.cpp 43 pdf_denom_ = sqrtf(M_PI * exp_denom_);
47 return sqrtf(var_);
  /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 );
  /external/webkit/Source/WebCore/svg/
ColorDistance.cpp 88 return sqrtf(m_redDiff * m_redDiff + m_blueDiff * m_blueDiff + m_greenDiff * m_greenDiff);
  /frameworks/base/core/jni/
android_util_FloatMath.cpp 25 static float SqrtF(JNIEnv* env, jobject clazz, float x) {
26 return sqrtf(x);
47 {"sqrt", "(F)F", (void*) MathUtilsGlue::SqrtF},
  /bionic/libm/src/
e_j0f.c 67 if(((uint32_t)hx)>0x80000000) z = (invsqrtpi*cc)/sqrtf(x);
70 z = invsqrtpi*(u*cc-v*ss)/sqrtf(x);
141 if(((uint32_t)hx)>0x80000000) z = (invsqrtpi*ss)/sqrtf(x);
144 z = invsqrtpi*(u*ss+v*cc)/sqrtf(x);
e_j1f.c 68 if(((uint32_t)hx)>0x80000000) z = (invsqrtpi*cc)/sqrtf(y);
71 z = invsqrtpi*(u*cc-v*ss)/sqrtf(y);
134 if(ix>0x48000000) z = (invsqrtpi*ss)/sqrtf(x);
137 z = invsqrtpi*(u*ss+v*cc)/sqrtf(x);
  /hardware/invensense/libsensors_iio/software/core/driver/include/
mlmath.h 71 #define sqrtf(x) ml_sqrt(x) macro
  /hardware/invensense/mlsdk/platform/include/
mlmath.h 83 #define sqrtf(x) ml_sqrt(x) macro
  /gdk/samples/PhotoEditor/jni/
fisheye.cpp 125 (M_PI_2 - atan(alpha * sqrtf(r2 - far_point * far_point) / far_point));
135 float s_xy2 = sqrtf(xy2);
136 float r_scale = linear_scale * (M_PI_2 - atan(alpha * sqrtf(r2 - xy2) / s_xy2)) / s_xy2;
  /external/skia/include/core/
SkFloatingPoint.h 48 #define sk_float_sqrt(x) sqrtf(x)
  /external/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro
  /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

Completed in 2372 milliseconds

1 2 3 4 5 6 7