/prebuilts/clang/host/darwin-x86/clang-2658975/lib64/clang/3.8/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/clang/host/darwin-x86/clang-2690385/lib64/clang/3.8/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/clang/host/linux-x86/3.8/lib/clang/3.8/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/clang/host/linux-x86/clang-2629532/lib64/clang/3.8/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/clang/host/linux-x86/clang-2658975/lib64/clang/3.8/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/clang/host/linux-x86/clang-2690385/lib64/clang/3.8/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/prebuilts/sdk/renderscript/clang-include/ |
tgmath.h | 150 // acosh 158 __tg_acosh(double __x) {return acosh(__x);} 176 #undef acosh macro 177 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
/external/libcxx/include/ |
cmath | 156 floating_point acosh (arithmetic x); 1051 // acosh 1054 using ::acosh; 1057 inline _LIBCPP_INLINE_VISIBILITY float acosh(float __lcpp_x) _NOEXCEPT {return acoshf(__lcpp_x);} 1058 inline _LIBCPP_INLINE_VISIBILITY long double acosh(long double __lcpp_x) _NOEXCEPT {return acoshl(__lcpp_x);} 1063 acosh(_A1 __lcpp_x) _NOEXCEPT {return acosh((double)__lcpp_x);} [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cmath | 156 floating_point acosh (arithmetic x); 1047 // acosh 1050 using ::acosh; 1053 inline _LIBCPP_INLINE_VISIBILITY float acosh(float __x) _NOEXCEPT {return acoshf(__x);} 1054 inline _LIBCPP_INLINE_VISIBILITY long double acosh(long double __x) _NOEXCEPT {return acoshl(__x);} 1059 acosh(_A1 __x) _NOEXCEPT {return acosh((double)__x);} [all...] |
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/libcxx/include/ |
cmath | 156 floating_point acosh (arithmetic x); 1047 // acosh 1050 using ::acosh; 1053 inline _LIBCPP_INLINE_VISIBILITY float acosh(float __x) _NOEXCEPT {return acoshf(__x);} 1054 inline _LIBCPP_INLINE_VISIBILITY long double acosh(long double __x) _NOEXCEPT {return acoshl(__x);} 1059 acosh(_A1 __x) _NOEXCEPT {return acosh((double)__x);} [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_math.py | 156 self.assertRaises(TypeError, math.acosh) 157 self.ftest('acosh(1)', math.acosh(1), 0) 158 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168) 159 self.assertRaises(ValueError, math.acosh, 0) 160 self.assertRaises(ValueError, math.acosh, -1) 161 self.assertEqual(math.acosh(INF), INF) 162 self.assertRaises(ValueError, math.acosh, NINF) 163 self.assertTrue(math.isnan(math.acosh(NAN)) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_math.py | 156 self.assertRaises(TypeError, math.acosh) 157 self.ftest('acosh(1)', math.acosh(1), 0) 158 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168) 159 self.assertRaises(ValueError, math.acosh, 0) 160 self.assertRaises(ValueError, math.acosh, -1) 161 self.assertEqual(math.acosh(INF), INF) 162 self.assertRaises(ValueError, math.acosh, NINF) 163 self.assertTrue(math.isnan(math.acosh(NAN)) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_math.py | 156 self.assertRaises(TypeError, math.acosh) 157 self.ftest('acosh(1)', math.acosh(1), 0) 158 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168) 159 self.assertRaises(ValueError, math.acosh, 0) 160 self.assertRaises(ValueError, math.acosh, -1) 161 self.assertEqual(math.acosh(INF), INF) 162 self.assertRaises(ValueError, math.acosh, NINF) 163 self.assertTrue(math.isnan(math.acosh(NAN)) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_math.py | 156 self.assertRaises(TypeError, math.acosh) 157 self.ftest('acosh(1)', math.acosh(1), 0) 158 self.ftest('acosh(2)', math.acosh(2), 1.3169578969248168) 159 self.assertRaises(ValueError, math.acosh, 0) 160 self.assertRaises(ValueError, math.acosh, -1) 161 self.assertEqual(math.acosh(INF), INF) 162 self.assertRaises(ValueError, math.acosh, NINF) 163 self.assertTrue(math.isnan(math.acosh(NAN)) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
tgmath.h | 274 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
tgmath.h | 274 #define acosh(Val) __TGMATH_UNARY_REAL_IMAG (Val, acosh, cacosh) macro
|
/bionic/libc/tools/ |
posix-2013.txt | 18 acosh
|
/external/mesa3d/src/glsl/builtins/profiles/ |
130.glsl | 70 float acosh(float x); 71 vec2 acosh(vec2 x); 72 vec3 acosh(vec3 x); 73 vec4 acosh(vec4 x);
|
140.glsl | 70 float acosh(float x); 71 vec2 acosh(vec2 x); 72 vec3 acosh(vec3 x); 73 vec4 acosh(vec4 x); [all...] |
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
math.rs | 116 TEST_FN_FUNC_FN(acosh);
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
math.rs.bak | 229 TEST_FN_FUNC_FN(acosh);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/tr1/ |
math.h | 37 using std::tr1::acosh;
|