Searched refs:fabsf (Results 1 - 25 of 39) sorted by relevance

12

/external/skia/src/core/
H A DSkCordic.cpp218 float error = fabsf(sine - sine2);
221 error = fabsf(cosine - cosine2);
228 error = fabsf(_tan - tan2);
229 if (error > 0.05 && fabsf(_tan) < 1e6)
238 float error = fabsf(arcsine - arcsine2);
252 float error = fabsf(arccos - arccos2);
269 float error = fabsf(arctan - arctan2);
285 float error = fabsf(log - log2);
/external/webkit/Source/WebCore/svg/
H A DSVGTransformDistance.cpp169 m_angle += absoluteValue ? fabsf(transform.angle()) : transform.angle();
170 m_cx += absoluteValue ? fabsf(transform.rotationCenter().x()) : transform.rotationCenter().x();
171 m_cy += absoluteValue ? fabsf(transform.rotationCenter().y()) : transform.rotationCenter().y();
174 float dx = absoluteValue ? fabsf(transform.translate().x()) : transform.translate().x();
175 float dy = absoluteValue ? fabsf(transform.translate().y()) : transform.translate().y();
180 float scaleX = absoluteValue ? fabsf(transform.scale().width()) : transform.scale().width();
181 float scaleY = absoluteValue ? fabsf(transform.scale().height()) : transform.scale().height();
187 m_angle += absoluteValue ? fabsf(transform.angle()) : transform.angle();
H A DSVGPathParser.cpp251 rx = fabsf(rx);
252 ry = fabsf(ry);
460 int segments = ceilf(fabsf(thetaArc / (piOverTwoFloat + 0.001f)));
H A DSVGAnimateTransformElement.cpp231 return fabsf(to.angle() - from.angle());
/external/webkit/Source/WebCore/html/
H A DTimeRanges.cpp132 closest = fabsf(startTime - time);
134 closest = fabsf(endTime - time);
/external/webkit/Source/WebCore/platform/audio/
H A DAudioChannel.cpp97 max = std::max(max, fabsf(*p++));
/external/webkit/Source/WebCore/platform/mac/
H A DScrollAnimatorMac.mm810 if (fabsf(wheelEvent.deltaY()) >= fabsf(wheelEvent.deltaX())) {
845 if (fabsf(deltaY) >= fabsf(deltaX)) {
921 if (fabsf(deltaY) >= fabsf(deltaX))
955 if (deltaY != 0 && (fabsf(deltaX / deltaY) < rubberbandDirectionLockStretchRatio))
957 else if (fabsf(deltaX) < rubberbandMinimumRequiredDeltaBeforeStretch) {
966 if (deltaX != 0 && (fabsf(deltaY / deltaX) < rubberbandDirectionLockStretchRatio))
968 else if (fabsf(delta
[all...]
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DPDFDocumentImage.cpp73 return IntSize((int)(fabsf(rotWidth) + 0.5f), (int)(fabsf(rotHeight) + 0.5f));
/external/skia/include/core/
H A DSkFloatingPoint.h62 #define sk_float_abs(x) fabsf(x)
/external/stlport/stlport/stl/config/
H A D_como.h129 # define fabsf fabs macro
/external/webkit/Source/WebCore/platform/graphics/
H A DContextShadow.cpp259 const float translationX = -layerArea.x() + inflation - fabsf(clippedOut.width());
260 const float translationY = -layerArea.y() + inflation - fabsf(clippedOut.height());
/external/quake/quake/src/WinQuake/
H A Dsnd_android.cpp493 if (fabsf(x) >= 0.5f) {
498 const float y = B*x*fabsf(x) + C*x;
499 return 0.2215f * (y*fabsf(y) - y) + y;
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h91 /// float fabsf(float x);
92 fabsf, enumerator in enum:llvm::LibFunc::Func
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextLayoutEngineBaseline.cpp182 return !fabsf(fmodf(orientationAngle, 180));
/external/valgrind/main/none/tests/amd64/
H A Dgen_insn_test.pl166 /* return f1 == f2 || fabsf(f1 - f2) < fabsf(f1) * 1.5 * powf(2,-12); */
167 return f1 == f2 || fabsf(f1 - f2) < fabsf(f1) * 1.5 / 4096.0;
/external/llvm/lib/Target/
H A DTargetLibraryInfo.cpp62 "fabsf",
173 TLI.setUnavailable(LibFunc::fabsf); // Win32 and Win64 both lack fabsf
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityMediaControls.cpp326 return localizedMediaTimeDescription(fabsf(time));
/external/webkit/Source/WebKit/mac/WebView/
H A DWebDynamicScrollBarsView.mm526 if (fabsf(deltaY) > fabsf(deltaX)) {
/external/qemu/fpu/
H A Dsoftfloat-native.h7 #define fabsf(f) ((float)fabs(f)) macro
262 return fabsf(a);
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DLoopBlinnMathUtils.cpp133 return fabsf(f0 - f1) < Epsilon;
218 return ::fabsf(x) < tolerance;
/external/valgrind/main/none/tests/x86/
H A Dgen_insn_test.pl146 return f1 == f2 || fabsf(f1 - f2) < fabsf(f1) * 1.5 * pow(2,-12);
/external/webkit/Source/WebKit/wince/WebCoreSupport/
H A DPlatformStrategiesWinCE.cpp616 int seconds = (int)fabsf(time);
/external/mesa3d/src/mesa/main/
H A Dimports.h266 #define FABSF(x) fabsf(x)
/external/webkit/Source/WebCore/css/
H A DSVGCSSStyleSelector.cpp67 angle = fabsf(fmodf(angle, 360.0f));
/external/webkit/Source/WebCore/platform/
H A DDefaultLocalizationStrategy.cpp848 int seconds = static_cast<int>(fabsf(time));

Completed in 499 milliseconds

12