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

1 2 3 4

  /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]+]]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
ColorDistance.cpp 39 return sqrtf(redDiff * redDiff + blueDiff * blueDiff + greenDiff * greenDiff);
SVGLengthContext.cpp 187 return value / sqrtf(viewportSize.diagonalLengthSquared() / 2) * 100;
208 return value * sqrtf(viewportSize.diagonalLengthSquared() / 2);
SVGPathParser.cpp 430 rx *= sqrtf(radiiScale);
431 ry *= sqrtf(radiiScale);
445 float scaleFactor = sqrtf(scaleFactorSquared);
  /external/chromium_org/third_party/WebKit/Source/platform/geometry/
FloatSize.cpp 46 return sqrtf(diagonalLengthSquared());
FloatPoint.cpp 72 return sqrtf(lengthSquared());
FloatPoint3D.h 122 float length() const { return sqrtf(lengthSquared()); }
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_acosf.c 59 s = sqrtf(z);
66 s = sqrtf(z);
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);
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFilter.cpp 57 point.z() * sqrtf(m_targetBoundingBox.size().diagonalLengthSquared() / 2));
  /external/chromium_org/native_client_sdk/src/examples/api/mouse_cursor/
mouse_cursor.cc 85 float dist = sqrtf(dx * dx + dy * dy);
  /external/llvm/lib/Transforms/Scalar/
PartiallyInlineLibCalls.cpp 84 case LibFunc::sqrtf:
  /development/ndk/sources/android/ndk_helper/
tapCamera.cpp 309 float scale = 1.f / sqrtf( mag );
315 ball_mouse = Vec3( vec, sqrtf( 1.f - mag ) );
  /external/chromium_org/third_party/skia/samplecode/
SampleAARects.cpp 128 canvas->translate(20.0f / sqrtf(2.f),
129 20.0f / sqrtf(2.f));
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 100 *** SQRTF: single-precision square root
102 #define SQRTF(X) (float) sqrt((float) (X))
108 #define INV_SQRTF(X) (1.0F / SQRTF(X))
139 #define sqrtf(f) ((float) sqrt(f)) macro
152 static inline float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); }
153 static inline float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_mips.c 267 tmp = sqrtf(WEBRTC_SPL_MAX(1 - lambda[PART_LEN] * lambda[PART_LEN], 0));
287 noiseAvg += sqrtf(noisePow[i]);
297 tmpAvg += sqrtf(WEBRTC_SPL_MAX(1 - lambda[i] * lambda[i], 0));
    [all...]
  /external/mesa3d/src/mesa/main/
imports.h 100 *** SQRTF: single-precision square root
102 #define SQRTF(X) (float) sqrt((float) (X))
108 #define INV_SQRTF(X) (1.0F / SQRTF(X))
139 #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/WebKit/Source/platform/graphics/filters/
FEGaussianBlur.cpp 42 return 3 / 4.f * sqrtf(twoPiFloat);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videocommon.cc 129 new_frame_width = static_cast<int>(sqrtf(static_cast<float>(
  /external/chromium_org/third_party/skia/gm/
tablecolorfilter.cpp 67 table[i] = static_cast<uint8_t>(sqrtf(fi) * 255);
  /external/chromium_org/third_party/skia/include/core/
SkFloatingPoint.h 70 #define sk_float_sqrt(x) sqrtf(x)

Completed in 585 milliseconds

1 2 3 4