Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dcmath_testcases.txt732 -- atan: Inverse tangent --
736 atan0000 atan 0.0 0.0 -> 0.0 0.0
737 atan0001 atan 0.0 -0.0 -> 0.0 -0.0
738 atan0002 atan -0.0 0.0 -> -0.0 0.0
739 atan0003 atan -0.0 -0.0 -> -0.0 -0.0
742 atan0010 atan 0.0 -9.8813129168249309e-324 -> 0.0 -9.8813129168249309e-324
743 atan0011 atan -0.0 -9.8813129168249309e-324 -> -0.0 -9.8813129168249309e-324
744 atan0012 atan 0.0 -1e-305 -> 0.0 -1e-305
745 atan0013 atan -0.0 -1e-305 -> -0.0 -1e-305
746 atan0014 atan 0.0 -1e-150 -> 0.0 -1e-150
[all …]
Dieee754.txt169 >>> asin(NAN), acos(NAN), atan(NAN)
179 >>> equal(atan(INF), PI/2), equal(atan(NINF), -PI/2)
Dtest_math.py184 self.assertRaises(TypeError, math.atan)
185 self.ftest('atan(-1)', math.atan(-1), -math.pi/4)
186 self.ftest('atan(0)', math.atan(0), 0)
187 self.ftest('atan(1)', math.atan(1), math.pi/4)
188 self.ftest('atan(inf)', math.atan(INF), math.pi/2)
189 self.ftest('atan(-inf)', math.atan(NINF), -math.pi/2)
190 self.assertTrue(math.isnan(math.atan(NAN)))
193 self.assertRaises(TypeError, math.atan)
/device/linaro/bootloader/edk2/StdLib/LibC/Math/
De_atan2.c75 if(((hx-0x3ff00000)|lx)==0) return atan(y); /* x=1.0 */ in __ieee754_atan2()
115 else z=atan(fabs(y/x)); /* safe to do y/x */ in __ieee754_atan2()
Ds_atan.c74 atan(double x) in atan() function
/device/google/contexthub/firmware/lib/libm/
Dsf_atan.c120 double atan(double x) in atan() function
122 double atan(x) in atan()
/device/linaro/bootloader/edk2/StdLib/Include/
Dmath.h130 double atan(double Arg);
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlmathlib.c72 lua_pushnumber(L, l_mathop(atan)(luaL_checknumber(L, 1))); in math_atan()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dmathmodule.c817 FUNC1(atan, atan, 0,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dmathmodule.c817 FUNC1(atan, atan, 0,
/device/google/marlin/camera/QCamera2/HAL/
DQCameraParameters.cpp1665 horizViewAngle = (180/PI)*2*atan(horizCropFactor*tan((maxHfov/2)*(PI/180))); in updateViewAngles()
1666 vertViewAngle = (180/PI)*2*atan(horizCropFactor*tan((maxVfov/2)*(PI/180))); in updateViewAngles()