HomeSort by relevance Sort by last modified time
    Searched full:sqrtf (Results 51 - 75 of 248) sorted by null

1 23 4 5 6 7 8 910

  /external/webkit/Source/WebCore/platform/graphics/qt/
PathQt.cpp 201 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/webkit/Source/WebCore/svg/
SVGPathParser.cpp 422 rx *= sqrtf(radiiScale);
423 ry *= sqrtf(radiiScale);
437 float scaleFactor = sqrtf(scaleFactorSquared);
SVGLength.cpp 373 return value / (sqrtf((width * width + height * height) / 2)) * 100;
395 return value * sqrtf((width * width + height * height) / 2);
SVGAnimateMotionElement.cpp 259 return sqrtf(diff.width() * diff.width() + diff.height() * diff.height());
SVGTransformDistance.cpp 249 return sqrtf(m_angle * m_angle + m_cx * m_cx + m_cy * m_cy);
  /cts/apps/CtsVerifier/jni/audioquality/
LinearityTestRms.cpp 62 return sqrtf(r);
219 return sqrtf(energy);
  /external/llvm/test/CodeGen/ARM/
2009-11-13-ScavengerAssert2.ll 54 %29 = call arm_aapcs_vfpcc float @sqrtf(float %28) readnone ; <float> [#uses=1]
123 declare arm_aapcs_vfpcc float @sqrtf(float) readnone
  /external/webkit/Source/WebCore/platform/graphics/win/
WebTiledLayer.cpp 164 const float cSqrtMaxTileCount = sqrtf(cMaxTileCount);
182 tileRows = ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
  /external/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint3D.h 122 float length() const { return sqrtf(lengthSquared()); }
PathTraversalState.cpp 40 return sqrtf((end.x() - start.x()) * (end.x() - start.x()) + (end.y() - start.y()) * (end.y() - start.y()));
ShadowBlur.cpp 209 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);
    [all...]
  /frameworks/base/opengl/libagl/
fp.h 187 return 1.0f / sqrtf(v);
  /frameworks/base/voip/jni/rtp/
EchoSuppressor.cpp 185 int factor = (corr2 > 1.0f) ? 0 : (1.0f - sqrtf(corr2)) * 4096;
  /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
  /prebuilt/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/config/
_como.h 127 # define sqrtf sqrt macro
  /external/llvm/test/CodeGen/X86/
avx-arith.ll 120 %conv1 = tail call float @sqrtf(float %a) nounwind readnone
133 declare float @sqrtf(float) readnone
  /external/qemu/fpu/
softfloat-native.c 33 #define sqrtf(f) ((float)sqrt(f)) macro
222 return sqrtf(a);
  /external/skia/src/core/
SkPoint.cpp 146 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/
PlatformCALayerWinInternal.cpp 344 const float cSqrtMaxTileCount = sqrtf(cMaxTileCount);
362 tileRows = ceilf(sqrtf(cMaxTileCount * constrainedSize.height / constrainedSize.width));
  /frameworks/base/libs/rs/driver/
rsdRuntimeMath.cpp 64 return 1.f / sqrtf(v);
425 { "_Z4sqrtf", (void *)&sqrtf, true },
  /bionic/libm/src/
math_private.h 231 #define __ieee754_sqrtf sqrtf
  /external/webkit/Source/WebCore/platform/graphics/filters/
FEGaussianBlur.cpp 40 static const float gGaussianKernelFactor = 3 / 4.f * sqrtf(2 * piFloat);

Completed in 775 milliseconds

1 23 4 5 6 7 8 910