OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sqrtf
(Results
1 - 25
of
112
) sorted by null
1
2
3
4
5
/bionic/libm/sparc64/
e_sqrtf.S
30
ENTRY(
sqrtf
)
function
33
END(
sqrtf
)
/external/llvm/test/FrontendC/
2005-07-20-SqrtNoErrno.c
8
// CHECK:
sqrtf
(float %1) nounwind readonly
10
return
sqrtf
(X);
2009-09-24-SqrtErrno.c
11
return
sqrtf
(X);
/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);
/system/media/mca/filterfw/native/core/
statistics.cpp
43
pdf_denom_ =
sqrtf
(M_PI * exp_denom_);
47
return
sqrtf
(var_);
/external/clang/test/CodeGen/
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) readnone
/frameworks/base/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 );
/frameworks/base/core/jni/
android_util_FloatMath.cpp
25
static float
SqrtF
(JNIEnv* env, jobject clazz, float x) {
26
return
sqrtf
(x);
35
{"sqrt", "(F)F", (void*) MathUtilsGlue::
SqrtF
}
/external/webkit/Source/WebCore/svg/
ColorDistance.cpp
88
return
sqrtf
(m_redDiff * m_redDiff + m_blueDiff * m_blueDiff + m_greenDiff * m_greenDiff);
SVGAnimateTransformElement.cpp
228
return
sqrtf
(diff.width() * diff.width() + diff.height() * diff.height());
234
return
sqrtf
(diff.width() * diff.width() + diff.height() * diff.height());
/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/mlsdk/platform/include/
mlmath.h
83
#define
sqrtf
(x) ml_sqrt(x)
macro
/external/skia/include/core/
SkFloatingPoint.h
55
#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
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/
_como.h
127
# define
sqrtf
sqrt
macro
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_como.h
127
# define
sqrtf
sqrt
macro
/external/skia/samplecode/
SampleAARects.cpp
122
canvas->translate(SkFloatToScalar(20.0f /
sqrtf
(2.f)),
123
SkFloatToScalar(20.0f /
sqrtf
(2.f)));
/external/webkit/Source/WebCore/platform/graphics/gpu/
LoopBlinnTextureCoords.cpp
55
float t1 =
sqrtf
(9.0f * classification.d2 * classification.d2 - 12 * classification.d1 * classification.d3);
80
float t1 =
sqrtf
(4.0f * classification.d1 * classification.d3 - 3.0f * classification.d2 * classification.d2);
/frameworks/base/opengl/tests/gl_jni/jni/
gl_code.cpp
36
float rlf = 1.0f /
sqrtf
(fx*fx + fy*fy + fz*fz);
42
float rlup = 1.0f /
sqrtf
(upX*upX + upY*upY + upZ*upZ);
Completed in 640 milliseconds
1
2
3
4
5