Searched refs:atan (Results 1 – 11 of 11) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | cmath_testcases.txt | 732 -- 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 …]
|
D | ieee754.txt | 169 >>> asin(NAN), acos(NAN), atan(NAN) 179 >>> equal(atan(INF), PI/2), equal(atan(NINF), -PI/2)
|
D | test_math.py | 184 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/ |
D | e_atan2.c | 75 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()
|
D | s_atan.c | 74 atan(double x) in atan() function
|
/device/google/contexthub/firmware/lib/libm/ |
D | sf_atan.c | 120 double atan(double x) in atan() function 122 double atan(x) in atan()
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | math.h | 130 double atan(double Arg);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lmathlib.c | 72 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/ |
D | mathmodule.c | 817 FUNC1(atan, atan, 0,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | mathmodule.c | 817 FUNC1(atan, atan, 0,
|
/device/google/marlin/camera/QCamera2/HAL/ |
D | QCameraParameters.cpp | 1665 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()
|