Searched refs:asin (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | cmath_testcases.txt | 402 -- asin: Inverse sine -- 406 asin0000 asin 0.0 0.0 -> 0.0 0.0 407 asin0001 asin 0.0 -0.0 -> 0.0 -0.0 408 asin0002 asin -0.0 0.0 -> -0.0 0.0 409 asin0003 asin -0.0 -0.0 -> -0.0 -0.0 412 asin0010 asin 1.0 0.0 -> 1.5707963267948966 0.0 413 asin0011 asin 1.0 -0.0 -> 1.5707963267948966 -0.0 414 asin0012 asin -1.0 0.0 -> -1.5707963267948966 0.0 415 asin0013 asin -1.0 -0.0 -> -1.5707963267948966 -0.0 418 asin0020 asin -9.8813129168249309e-324 0.0 -> -9.8813129168249309e-324 0.0 [all …]
|
D | ieee754.txt | 169 >>> asin(NAN), acos(NAN), atan(NAN) 171 >>> asin(INF), asin(NINF)
|
D | test_math.py | 166 self.assertRaises(TypeError, math.asin) 167 self.ftest('asin(-1)', math.asin(-1), -math.pi/2) 168 self.ftest('asin(0)', math.asin(0), 0) 169 self.ftest('asin(1)', math.asin(1), math.pi/2) 170 self.assertRaises(ValueError, math.asin, INF) 171 self.assertRaises(ValueError, math.asin, NINF) 172 self.assertTrue(math.isnan(math.asin(NAN)))
|
/device/google/contexthub/firmware/lib/libm/ |
D | wf_asin.c | 62 double asin(double x) in asin() function 64 double asin(x) in asin()
|
/device/linaro/bootloader/edk2/StdLib/LibC/Math/ |
D | w_asin.c | 28 asin(double x) /* wrapper asin */ in asin() function
|
/device/linaro/bootloader/edk2/StdLib/Include/ |
D | math.h | 122 double asin(double Arg);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lmathlib.c | 62 lua_pushnumber(L, l_mathop(asin)(luaL_checknumber(L, 1))); in math_asin()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | mathmodule.c | 813 FUNC1(asin, asin, 0,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | mathmodule.c | 813 FUNC1(asin, asin, 0,
|
/device/google/contexthub/firmware/external/freebsd/lib/msun/src/ |
D | math_private.h | 681 #define __ieee754_asin asin
|