Searched defs:scalbn (Results 1 – 9 of 9) sorted by relevance
/llvm-project/libcxx/include/__math/ |
H A D | exponential_functions.h | 131 inline _LIBCPP_HIDE_FROM_ABI float scalbn(float __x, int __y) _NOEXCEPT { return __builtin_scalbnf(… in scalbn() function 134 _LIBCPP_HIDE_FROM_ABI double scalbn(double __x, int __y) _NOEXCEPT { in scalbn() function 138 inline _LIBCPP_HIDE_FROM_ABI long double scalbn(long double __x, int __y) _NOEXCEPT { in scalbn() function 143 inline _LIBCPP_HIDE_FROM_ABI double scalbn(_A1 __x, int __y) _NOEXCEPT { in scalbn() function
|
/llvm-project/libc/src/math/nvptx/ |
H A D | nvptx.h | 86 LIBC_INLINE double scalbn(double x, int i) { return __nv_scalbn(x, i); } scalbn() function
|
/llvm-project/libcxx/test/std/numerics/c.math/ |
H A D | cmath.pass.cpp | 104 Ambiguous scalbn(Ambiguous, Ambiguous){ return Ambiguous(); } scalbn() function [all...] |
/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
H A D | math_h.pass.cpp | 102 Ambiguous scalbn(Ambiguous, Ambiguous){ return Ambiguous(); } in scalbn() function [all...] |
/llvm-project/llvm/include/llvm/ADT/ |
H A D | APFloat.h | 1414 inline APFloat scalbn(APFloat X, int Exp, APFloat::roundingMode RM) { scalbn() function
|
/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_math.h | 277 __DEVICE__ double scalbn(double __a, int __b) { return __nv_scalbn(__a, __b); } scalbn() function
|
H A D | tgmath.h | 1165 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) macro
|
/llvm-project/llvm/lib/Support/ |
H A D | APFloat.cpp | 4623 IEEEFloat scalbn(IEEEFloat X, int Exp, IEEEFloat::roundingMode RoundingMode) { scalbn() function 5230 DoubleAPFloat scalbn(const DoubleAPFloat &Arg, int Exp, scalbn() function
|
/llvm-project/llvm/unittests/ADT/ |
H A D | APFloatTest.cpp | 3759 TEST(APFloatTest,scalbn) TEST() argument [all...] |