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

12

/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DFloatSize.cpp50 return sqrtf(diagonalLengthSquared());
H A DFloatPoint.cpp66 return sqrtf(lengthSquared());
H A DFloatPoint3D.h122 float length() const { return sqrtf(lengthSquared()); }
H A DPathTraversalState.cpp37 return sqrtf((end.x() - start.x()) * (end.x() - start.x()) + (end.y() - start.y()) * (end.y() - start.y()));
/macosx-10.9.5/WebCore-7537.78.1/svg/
H A DColorDistance.cpp89 return sqrtf(m_redDiff * m_redDiff + m_blueDiff * m_blueDiff + m_greenDiff * m_greenDiff);
H A DSVGLengthContext.cpp178 return value / (sqrtf((width * width + height * height) / 2)) * 100;
200 return value * sqrtf((width * width + height * height) / 2);
H A DSVGPathParser.cpp431 rx *= sqrtf(radiiScale);
432 ry *= sqrtf(radiiScale);
446 float scaleFactor = sqrtf(scaleFactorSquared);
H A DSVGTransformDistance.cpp206 return sqrtf(m_angle * m_angle + m_cx * m_cx + m_cy * m_cy);
H A DSVGAnimateMotionElement.cpp325 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height());
/macosx-10.9.5/WebCore-7537.78.1/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);
H A DLoopBlinnMathUtils.cpp364 discriminant = sqrtf(discriminant);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/Target/
H A DTargetLibraryInfo.h275 /// float sqrtf(float x);
276 sqrtf, enumerator in enum:llvm::LibFunc::Func
373 case LibFunc::sqrt: case LibFunc::sqrtf: case LibFunc::sqrtl:
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/qt/
H A DPathQt.cpp206 float p1p0_length = sqrtf(p1p0.x() * p1p0.x() + p1p0.y() * p1p0.y());
207 float p1p2_length = sqrtf(p1p2.x() * p1p2.x() + p1p2.y() * p1p2.y());
246 float orth_p1p2_length = sqrtf(orth_p1p2.x() * orth_p1p2.x() + orth_p1p2.y() * orth_p1p2.y());
H A DGraphicsContextQt.cpp1148 qreal deviceScaleX = sqrtf(deviceTransform.m11() * deviceTransform.m11() + deviceTransform.m12() * deviceTransform.m12());
1149 qreal deviceScaleY = sqrtf(deviceTransform.m21() * deviceTransform.m21() + deviceTransform.m22() * deviceTransform.m22());
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cairo/
H A DPathCairo.cpp225 float p1p0_length = sqrtf(p1p0.x() * p1p0.x() + p1p0.y() * p1p0.y());
226 float p1p2_length = sqrtf(p1p2.x() * p1p2.x() + p1p2.y() * p1p2.y());
270 float orth_p1p2_length = sqrtf(orth_p1p2.x() * orth_p1p2.x() + orth_p1p2.y() * orth_p1p2.y());
/macosx-10.9.5/llvmCore-3425.0.33/lib/Target/
H A DTargetLibraryInfo.cpp153 "sqrtf",
308 TLI.setUnavailable(LibFunc::sqrtf);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/win/
H A DPlatformCALayerWinInternal.cpp348 const float cSqrtMaxTileCount = sqrtf(cMaxTileCount);
367 tileRows = ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/mac/
H A DFontMac.mm236 float horizontalUnitLengthInDevicePixels = sqrtf(horizontalUnitSizeInDevicePixels.width() * horizontalUnitSizeInDevicePixels.width() + horizontalUnitSizeInDevicePixels.height() * horizontalUnitSizeInDevicePixels.height());
/macosx-10.9.5/WebCore-7537.78.1/platform/audio/
H A DDynamicsCompressorKernel.cpp174 k = sqrtf(minK * maxK);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/filters/
H A DFEGaussianBlur.cpp44 return 3 / 4.f * sqrtf(2 * piFloat);
H A DFETurbulence.cpp188 normalizationFactor = sqrtf(gradient[0] * gradient[0] + gradient[1] * gradient[1]);
/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DBasicShapes.cpp89 float diagonal = sqrtf((boundingBox.width() * boundingBox.width() + boundingBox.height() * boundingBox.height()) / 2);
/macosx-10.9.5/libstdcxx-60/include/c++/4.2.1/bits/
H A Dc++config.h497 /* Define to 1 if you have the `sqrtf' function. */
1275 # define sqrtf _sqrtf macro
/macosx-10.9.5/xnu-2422.115.4/tools/tests/zero-to-n/
H A Dzero-to-n.c396 _dev = sqrtf(_dev);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/cg/
H A DGraphicsContextCG.cpp1212 float deviceScaleX = sqrtf(deviceMatrix.a * deviceMatrix.a + deviceMatrix.b * deviceMatrix.b);
1213 float deviceScaleY = sqrtf(deviceMatrix.c * deviceMatrix.c + deviceMatrix.d * deviceMatrix.d);

Completed in 409 milliseconds

12