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

12

/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 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) nounwind readnone
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatSize.cpp42 return sqrtf(diagonalLengthSquared());
H A DFloatPoint.cpp55 return sqrtf(lengthSquared());
H A DContextShadow.cpp196 const float xAxisScale = sqrtf(xUnitChange.width() * xUnitChange.width()
201 const float yAxisScale = sqrtf(yUnitChange.width() * yUnitChange.width()
205 const float scale = sqrtf(xAxisScale * yAxisScale);
H A DFloatPoint3D.h122 float length() const { return sqrtf(lengthSquared()); }
H A DPathTraversalState.cpp40 return sqrtf((end.x() - start.x()) * (end.x() - start.x()) + (end.y() - start.y()) * (end.y() - start.y()));
H A DShadowBlur.cpp209 const float gaussianKernelFactor = 3 / 4.f * sqrtf(2 * piFloat);
328 const float xAxisScale = sqrtf(xUnitChange.width() * xUnitChange.width()
333 const float yAxisScale = sqrtf(yUnitChange.width() * yUnitChange.width()
338 const float scale = sqrtf(xAxisScale * yAxisScale);
/external/webkit/Source/WebCore/svg/
H A DColorDistance.cpp88 return sqrtf(m_redDiff * m_redDiff + m_blueDiff * m_blueDiff + m_greenDiff * m_greenDiff);
H A DSVGAnimateTransformElement.cpp228 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height());
234 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height());
H A DSVGPathParser.cpp422 rx *= sqrtf(radiiScale);
423 ry *= sqrtf(radiiScale);
437 float scaleFactor = sqrtf(scaleFactorSquared);
H A DSVGLength.cpp373 return value / (sqrtf((width * width + height * height) / 2)) * 100;
395 return value * sqrtf((width * width + height * height) / 2);
/external/skia/include/core/
H A DSkFloatingPoint.h55 #define sk_float_sqrt(x) sqrtf(x)
/external/stlport/stlport/stl/config/
H A D_como.h127 # define sqrtf sqrt macro
/external/skia/samplecode/
H A DSampleAARects.cpp122 canvas->translate(SkFloatToScalar(20.0f / sqrtf(2.f)),
123 SkFloatToScalar(20.0f / sqrtf(2.f)));
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnTextureCoords.cpp55 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);
/external/webkit/Source/WebCore/platform/graphics/win/
H A DWebTiledLayer.cpp164 const float cSqrtMaxTileCount = sqrtf(cMaxTileCount);
182 tileRows = ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
/external/webkit/Source/WebCore/platform/graphics/cairo/
H A DPathCairo.cpp199 float p1p0_length = sqrtf(p1p0.x() * p1p0.x() + p1p0.y() * p1p0.y());
200 float p1p2_length = sqrtf(p1p2.x() * p1p2.x() + p1p2.y() * p1p2.y());
244 float orth_p1p2_length = sqrtf(orth_p1p2.x() * orth_p1p2.x() + orth_p1p2.y() * orth_p1p2.y());
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DPathQt.cpp201 float p1p0_length = sqrtf(p1p0.x() * p1p0.x() + p1p0.y() * p1p0.y());
202 float p1p2_length = sqrtf(p1p2.x() * p1p2.x() + p1p2.y() * p1p2.y());
241 float orth_p1p2_length = sqrtf(orth_p1p2.x() * orth_p1p2.x() + orth_p1p2.y() * orth_p1p2.y());
/external/valgrind/main/memcheck/tests/
H A Dvcpu_fnfns.c100 printf(" sqrtF(%+20.4e) = %+20.4e\n", (double)f, (double)sqrtf(f));
/external/mesa3d/src/mesa/main/
H A Dimports.h141 #define sqrtf(f) ((float) sqrt(f))
153 static INLINE float asinhf(float x) { return logf(x + sqrtf(x * x + 1.0f)); }
154 static INLINE float acoshf(float x) { return logf(x + sqrtf(x * x - 1.0f)); }
/external/qemu/fpu/
H A Dsoftfloat-native.c33 #define sqrtf(f) ((float)sqrt(f)) macro
222 return sqrtf(a);
/external/skia/src/core/
H A DSkPoint.cpp146 return (int)floorf(sqrtf(fx*fx + fy*fy) + 0.5f);
342 float mag = sqrtf(fx*fx + fy*fy);
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp344 const float cSqrtMaxTileCount = sqrtf(cMaxTileCount);
362 tileRows = ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));

Completed in 578 milliseconds

12