/external/skia/src/core/ |
D | SkCordic.cpp | 214 float error = fabsf(sine - sine2); 217 error = fabsf(cosine - cosine2); 224 error = fabsf(_tan - tan2); 225 if (error > 0.05 && fabsf(_tan) < 1e6) 234 float error = fabsf(arcsine - arcsine2); 248 float error = fabsf(arccos - arccos2); 265 float error = fabsf(arctan - arctan2); 281 float error = fabsf(log - log2);
|
/external/skia/legacy/src/core/ |
D | SkCordic.cpp | 218 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/llvm/test/CodeGen/Hexagon/ |
D | opt-fabs.ll | 2 ; Optimize fabsf to clrbit in V5. 11 %call = call float @fabsf(float %0) readnone 15 declare float @fabsf(float)
|
/external/webkit/Source/WebCore/svg/ |
D | SVGTransformDistance.cpp | 169 m_angle += absoluteValue ? fabsf(transform.angle()) : transform.angle(); in addSVGTransform() 170 … m_cx += absoluteValue ? fabsf(transform.rotationCenter().x()) : transform.rotationCenter().x(); in addSVGTransform() 171 … m_cy += absoluteValue ? fabsf(transform.rotationCenter().y()) : transform.rotationCenter().y(); in addSVGTransform() 174 float dx = absoluteValue ? fabsf(transform.translate().x()) : transform.translate().x(); in addSVGTransform() 175 float dy = absoluteValue ? fabsf(transform.translate().y()) : transform.translate().y(); in addSVGTransform() 180 float scaleX = absoluteValue ? fabsf(transform.scale().width()) : transform.scale().width(); in addSVGTransform() 181 … float scaleY = absoluteValue ? fabsf(transform.scale().height()) : transform.scale().height(); in addSVGTransform() 187 m_angle += absoluteValue ? fabsf(transform.angle()) : transform.angle(); in addSVGTransform()
|
D | SVGPathParser.cpp | 251 rx = fabsf(rx); in parseArcToSegment() 252 ry = fabsf(ry); in parseArcToSegment() 460 int segments = ceilf(fabsf(thetaArc / (piOverTwoFloat + 0.001f))); in decomposeArcToCubic()
|
/external/llvm/test/CodeGen/X86/ |
D | fabs.ll | 1 ; Make sure this testcase codegens to the fabs instruction, not a call to fabsf 6 declare float @fabsf(float) 14 %Y = call float @fabsf(float %X) readnone 22 ; NOOPT-NOT: fabsf
|
/external/llvm/test/Transforms/TailCallElim/ |
D | inf-recursion.ll | 25 ; CHECK: define float @fabsf 28 define float @fabsf(float %f) { 29 %t= call float @fabsf(float 2.0)
|
/external/llvm/test/CodeGen/Generic/ |
D | fneg-fabs.ll | 15 declare float @fabsf(float) 23 %Y = call float @fabsf( float %X ) ; <float> [#uses=1]
|
/external/llvm/test/Transforms/SimplifyLibCalls/ |
D | float-shrink-compare.ll | 25 ; CHECK-NEXT: %fabsf = call float @fabsf(float %x) 26 ; CHECK-NEXT: fcmp oeq float %fabsf, %y 109 ; CHECK-NEXT: %fabsf = call float @fabsf(float %x) 110 ; CHECK-NEXT: fcmp oeq float %fabsf, %y
|
D | win-math.ll | 7 ; x86-64 win32 msvcrt does (except for fabsf) 124 ; WIN32-NOT: float @fabsf 127 ; WIN64-NOT: float @fabsf
|
/external/llvm/test/CodeGen/ARM/ |
D | fabss.ll | 9 %0 = tail call float @fabsf(float %dum) readnone 14 declare float @fabsf(float)
|
D | fparith.ll | 87 %tmp1 = call float @fabsf( float %a ) readnone ; <float> [#uses=1] 91 declare float @fabsf(float)
|
D | vfp.ll | 12 declare float @fabsf(float) 20 %b = call float @fabsf( float %a ) readnone ; <float> [#uses=1]
|
/external/clang/test/CodeGen/ |
D | libcall-declarations.c | 34 float fabsf(float); 82 exp, expl, expf, exp2, exp2l, exp2f, fabs, fabsl, fabsf, floor, floorl,
|
/external/webkit/Source/WebCore/platform/mac/ |
D | ScrollAnimatorMac.mm | 810 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(deltaY) < rubberbandMinimumRequiredDeltaBeforeStretch) { 977 if (fabsf(deltaY) >= fabsf(deltaX)) { 978 if (fabsf(deltaX) < rubberbandMinimumRequiredDeltaBeforeStretch) { 1029 …rection(eventCoallescedDeltaX, eventCoallescedDeltaY) || (fabsf(eventCoallescedDeltaX) + fabsf(eve… [all …]
|
/external/webkit/Source/WebCore/html/ |
D | TimeRanges.cpp | 132 closest = fabsf(startTime - time); in nearest() 134 closest = fabsf(endTime - time); in nearest()
|
/external/llvm/test/CodeGen/Mips/ |
D | fabs.ll | 20 %call = tail call float @fabsf(float %a) nounwind readnone 24 declare float @fabsf(float) nounwind readnone
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
D | PDFDocumentImage.cpp | 73 return IntSize((int)(fabsf(rotWidth) + 0.5f), (int)(fabsf(rotHeight) + 0.5f)); in size()
|
/external/llvm/test/Transforms/InstCombine/ |
D | double-float-shrink-2.ll | 13 ; DO-SIMPLIFY: call float @fabsf( 76 ; --> fabsf
|
/external/webkit/Source/WebCore/platform/audio/ |
D | AudioChannel.cpp | 97 max = std::max(max, fabsf(*p++)); in maxAbsValue()
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | ContextShadow.cpp | 259 const float translationX = -layerArea.x() + inflation - fabsf(clippedOut.width()); in calculateLayerBoundingRect() 260 const float translationY = -layerArea.y() + inflation - fabsf(clippedOut.height()); in calculateLayerBoundingRect()
|
/external/quake/quake/src/WinQuake/ |
D | snd_android.cpp | 493 if (fabsf(x) >= 0.5f) { in sinef() 498 const float y = B*x*fabsf(x) + C*x; in sinef() 499 return 0.2215f * (y*fabsf(y) - y) + y; in sinef()
|
/external/llvm/test/CodeGen/AArch64/ |
D | floatdp_1source.ll | 7 declare float @fabsf(float) readonly 32 %valabs = call float @fabsf(float %val1)
|
/external/llvm/include/llvm/Target/ |
D | TargetLibraryInfo.h | 195 fabsf, enumerator 676 case LibFunc::fabs: case LibFunc::fabsf: case LibFunc::fabsl: in hasOptimizedCodeGen()
|
/external/stlport/stlport/stl/config/ |
D | _como.h | 129 # define fabsf fabs macro
|