Searched refs:sqrtf (Results 1 - 25 of 73) sorted by relevance

123

/external/clang/test/CodeGen/
H A D2005-07-20-SqrtNoErrno.c4 float sqrtf(float x);
7 // CHECK: call float @sqrtf(float %
9 return sqrtf(X);
H A D2009-09-24-SqrtErrno.c5 float sqrtf(float x);
9 // CHECK: call float @sqrtf
11 return sqrtf(X);
H A Dlibcall-declarations.c70 float sqrtf(float);
86 sqrtf, tan, tanl, tanf, trunc, truncl, truncf
154 // CHECK-NOERRNO: declare float @sqrtf(float) [[NUW]]
H A Dlibcalls.c11 // 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) [[NUW_RN:#[0-9]+]]
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatSize.cpp50 return sqrtf(diagonalLengthSquared());
H A DFloatPoint.cpp72 return sqrtf(lengthSquared());
H A DFloatPoint3D.h122 float length() const { return sqrtf(lengthSquared()); }
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DColorDistance.cpp71 return sqrtf(m_redDiff * m_redDiff + m_blueDiff * m_blueDiff + m_greenDiff * m_greenDiff);
H A DSVGLengthContext.cpp175 return value / sqrtf(viewportSize.diagonalLengthSquared() / 2) * 100;
196 return value * sqrtf(viewportSize.diagonalLengthSquared() / 2);
H A DSVGPathParser.cpp430 rx *= sqrtf(radiiScale);
431 ry *= sqrtf(radiiScale);
445 float scaleFactor = sqrtf(scaleFactorSquared);
H A DSVGTransformDistance.cpp203 return sqrtf(m_angle * m_angle + m_cx * m_cx + m_cy * m_cy);
/external/pixman/
H A Dconfig.h.in172 /* Define to sqrt if you do not have the `sqrtf' function. */
173 #undef sqrtf
/external/chromium_org/native_client_sdk/src/examples/api/mouse_cursor/
H A Dmouse_cursor.cc85 float dist = sqrtf(dx * dx + dy * dy);
/external/stlport/stlport/stl/config/
H A D_como.h127 # define sqrtf sqrt macro
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h139 #define sqrtf(f) ((float) sqrt(f)) macro
151 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); }
152 static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
/external/mesa3d/src/mesa/main/
H A Dimports.h139 #define sqrtf(f) ((float) sqrt(f)) macro
151 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); }
152 static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dvideocommon.cc129 new_frame_width = static_cast<int>(sqrtf(static_cast<float>(
/external/chromium_org/third_party/skia/include/core/
H A DSkFloatingPoint.h47 #define sk_float_sqrt(x) sqrtf(x)
/external/llvm/lib/Target/Mips/
H A DMipsOptimizeMathLibCalls.cpp107 case LibFunc::sqrtf:
/external/skia/gm/
H A Dtablecolorfilter.cpp69 table[i] = static_cast<uint8_t>(sqrtf(fi) * 255);
/external/skia/include/core/
H A DSkFloatingPoint.h47 #define sk_float_sqrt(x) sqrtf(x)
/external/valgrind/main/memcheck/tests/
H A Dvcpu_fnfns.c100 printf(" sqrtF(%+20.4e) = %+20.4e\n", (double)f, (double)sqrtf(f));
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h502 /// float sqrtf(float x);
503 sqrtf, enumerator in enum:llvm::LibFunc::Func
691 case LibFunc::sqrt: case LibFunc::sqrtf: case LibFunc::sqrtl:
/external/qemu/fpu/
H A Dsoftfloat-native.c33 #define sqrtf(f) ((float)sqrt(f)) macro
222 return sqrtf(a);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp37 return sqrtf((end.x() - start.x()) * (end.x() - start.x()) + (end.y() - start.y()) * (end.y() - start.y()));

Completed in 2051 milliseconds

123