Home
last modified time | relevance | path

Searched refs:atan2 (Results 1 – 22 of 22) sorted by relevance

/external/webkit/JavaScriptCore/tests/mozilla/ecma/Math/
D15.8.2.5.js46 …array[item++] = new TestCase( SECTION, "Math.atan2.length", 2, Math.atan2.len…
48 …array[item++] = new TestCase( SECTION, "Math.atan2(NaN, 0)", Number.NaN, Math.atan2(Num…
49 …array[item++] = new TestCase( SECTION, "Math.atan2(null, null)", 0, Math.atan2(nul…
50 …tCase( SECTION, "Math.atan2(void 0, void 0)", Number.NaN, Math.atan2(void 0, void 0) );
51 …em++] = new TestCase( SECTION, "Math.atan2()", Number.NaN, Math.atan2() );
53 …array[item++] = new TestCase( SECTION, "Math.atan2(0, NaN)", Number.NaN, Math.atan2(0,…
54 …array[item++] = new TestCase( SECTION, "Math.atan2(1, 0)", Math.PI/2, Math.atan2(1,…
55 …array[item++] = new TestCase( SECTION, "Math.atan2(1,-0)", Math.PI/2, Math.atan2(1,…
56 …array[item++] = new TestCase( SECTION, "Math.atan2(0,0.001)", 0, Math.atan2(0,…
57 …array[item++] = new TestCase( SECTION, "Math.atan2(0,0)", 0, Math.atan2(0,…
[all …]
/external/webkit/V8Binding/v8/test/mjsunit/regress/
Dregress-925537.js38 assertClose( Math.PI / 4, Math.atan2(pinf, pinf));
39 assertClose(-Math.PI / 4, Math.atan2(ninf, pinf));
40 assertClose( 3 * Math.PI / 4, Math.atan2(pinf, ninf));
41 assertClose(-3 * Math.PI / 4, Math.atan2(ninf, ninf));
/external/skia/src/animator/
DSkDisplayMath.cpp58 SK_FUNCTION(atan2),
130 SK_MEMBER_FUNCTION(atan2, Float),
173 case SK_FUNCTION(atan2): in executeFunction()
/external/webkit/V8Binding/v8/test/mjsunit/
Dto_number_order.js43 assertEquals(Math.atan2(1, 2), Math.atan2(v, w));
/external/webkit/JavaScriptCore/wtf/
DMathExtras.h143 result = ::atan2(x, y); in wtf_atan2()
154 #define atan2(x, y) wtf_atan2(x, y) macro
/external/tesseract/ccstruct/
Dlinlsq.cpp201 avg_angle = atan2 (dir.sigy, dir.sigx); in fit()
205 angle = atan2 (2 * a, b) / 2; in fit()
Dpoints.h91 return (float) atan2 ((double) ycoord, (double) xcoord); in angle()
254 return (float) atan2 (ycoord, xcoord); in ELISTIZEH_S()
/external/tesseract/classify/
Dfpoint.h42 #define AngleFrom(A,B) ( atan2((double) YDelta(A,B), \
Dmfx.cpp132 (atan2 (y2-y1, x2-x1)) : \
/external/webkit/SunSpider/
DUNCOVERED73 Math.atan2
/external/skia/include/core/
DSkFloatingPoint.h41 #define sk_float_atan2(y,x) (float)::atan2(y,x)
/external/icu4c/i18n/
Dastro.cpp448 result.set(atan2(sinL*cosE - tanB*sinE, cosL), in eclipticToEquatorial()
486 double azimuth = atan2(-cosD*cosL*sinH, sinD - sinL * ::sin(altitude)); in eclipticToHorizon()
1073 moonEclipLong = ::atan2(y*cos(moonI), x) + nodeLongitude; in getMoonPosition()
/external/webkit/WebCore/rendering/
DRenderPath.cpp284 double inslope = rad2deg(atan2(inslopeChange.y(), inslopeChange.x())); in drawMarkerWithData()
285 double outslope = rad2deg(atan2(outslopeChange.y(), outslopeChange.x())); in drawMarkerWithData()
/external/tesseract/liblept/
Daffine.c1345 th3 = atan2((l_float64)(x1 - x3), (l_float64)(y1 - y3)); in pixAffineSequential()
1349 ph2 = atan2((l_float64)(y1 - y2), (l_float64)(x2s - x1)); in pixAffineSequential()
1355 th3p = atan2((l_float64)(x1p - x3p), (l_float64)(y1p - y3p)); in pixAffineSequential()
1359 ph2p = atan2((l_float64)(y1p - y2p), (l_float64)(x2sp - x1p)); in pixAffineSequential()
/external/webkit/WebCore/svg/
DSVGRadialGradientElement.cpp105 double angle = atan2(attributes.fy() * 100.0, attributes.fx() * 100.0); in buildGradient()
DSVGParserUtilities.cpp617 th0 = atan2(y0 - yc, x0 - xc); in calculateArc()
618 th1 = atan2(y1 - yc, x1 - xc); in calculateArc()
/external/webkit/JavaScriptCore/runtime/
DMathObject.cpp140 return jsNumber(exec, atan2(args.at(0).toNumber(exec), args.at(1).toNumber(exec))); in mathProtoFuncATan2()
/external/proguard/src/proguard/gui/
Ddefault.pro66 public static double atan2(double,double);
Dboilerplate.pro127 public static double atan2(double,double);
/external/webkit/WebCore/platform/graphics/transforms/
DTransformationMatrix.cpp505 return rotate(rad2deg(atan2(y, x))); in rotateFromVector()
/external/tesseract/textord/
Dtabfind.cpp1372 float angle = atan2(deskew.y(), deskew.x()); in Deskew()
/external/webkit/V8Binding/v8/src/
Druntime.cc4100 result = atan2(x, y); in Runtime_Math_atan2()