Searched defs:ldexp (Results 1 – 7 of 7) sorted by relevance
/llvm-project/libcxx/include/__math/ |
H A D | exponential_functions.h | 63 inline _LIBCPP_HIDE_FROM_ABI float ldexp(float __x, int __e) _NOEXCEPT { return __builtin_ldexpf(__… in ldexp() function 66 _LIBCPP_HIDE_FROM_ABI double ldexp(double __x, int __e) _NOEXCEPT { in ldexp() function 70 inline _LIBCPP_HIDE_FROM_ABI long double ldexp(long double __x, int __e) _NOEXCEPT { in ldexp() function 75 inline _LIBCPP_HIDE_FROM_ABI double ldexp(_A1 __x, int __e) _NOEXCEPT { in ldexp() function
|
/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_cmath.h | 155 __DEVICE__ float ldexp(float __arg, int __exp) { in ldexp() function
|
H A D | __clang_cuda_math.h | 154 __DEVICE__ double ldexp(double __a, int __b) { return __nv_ldexp(__a, __b); } ldexp() function
|
H A D | tgmath.h | 868 #define ldexp(__x, __y) __tg_ldexp(__tg_promote1((__x))(__x), __y) macro
|
/llvm-project/libc/src/math/nvptx/ |
H A D | nvptx.h | 52 LIBC_INLINE double ldexp(double x, int i) { return __nv_ldexp(x, i); } ldexp() function
|
/llvm-project/libcxx/test/std/numerics/c.math/ |
H A D | cmath.pass.cpp | 51 Ambiguous ldexp(Ambiguous, int){ return Ambiguous(); } ldexp() function [all...] |
/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
H A D | math_h.pass.cpp | 51 Ambiguous ldexp(Ambiguous, int){ return Ambiguous(); } in ldexp() function
|