Home
last modified time | relevance | path

Searched refs:atan2f (Results 1 – 11 of 11) sorted by relevance

/external/stlport/stlport/stl/config/
D_como.h120 # define atan2f atan2 macro
/external/skia/include/core/
DSkFloatingPoint.h68 #define sk_float_atan2(y,x) atan2f(y,x)
/external/webkit/Source/WebCore/svg/
DSVGPathParser.cpp445 float theta1 = atan2f(point1.y() - centerPoint.y(), point1.x() - centerPoint.x()); in decomposeArcToCubic()
446 float theta2 = atan2f(point2.y() - centerPoint.y(), point2.x() - centerPoint.x()); in decomposeArcToCubic()
DSVGRadialGradientElement.cpp243 float angle = atan2f(deltaY, deltaX); in calculateFocalCenterPointsAndRadius()
/external/valgrind/main/memcheck/tests/
Dvcpu_fnfns.c175 printf("atan2F(%+20.4e) = %+20.4e\n", (double)f, (double)atan2f(f,1.0)); in main()
/external/skia/src/core/
DSkCordic.cpp274 float arctan = atan2f(val, val2);
/external/webkit/Source/WebCore/platform/graphics/
DPath.cpp74 float slope = atan2f(change.height(), change.width()); in pathLengthApplierFunction()
/external/webkit/Source/WebCore/platform/graphics/openvg/
DPathOpenVG.cpp494 return atan2f(tangentY, tangentX) * 180.0 / piFloat; // convert to degrees in normalAngleAtLength()
/external/clang/lib/Headers/
Dtgmath.h562 __tg_atan2(float __x, float __y) {return atan2f(__x, __y);} in __tg_atan2()
1213 __tg_carg(float __x) {return atan2f(0.F, __x);} in __tg_carg()
/external/stlport/stlport/stl/
D_cmath.h86 inline float atan2f(float v1, float v2) { return __atan2f(v1,v2); } in atan2f() function
/external/mesa3d/src/glsl/
Dir_constant_expression.cpp1032 data.f[c] = atan2f(op[0]->value.f[c], op[1]->value.f[c]); in constant_expression_value()