Home
last modified time | relevance | path

Searched defs:scalbn (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/libcxx/include/
H A Dmath.h1697 inline _LIBCPP_INLINE_VISIBILITY float scalbn(float __lcpp_x, int __lcpp_y) _NOEXCEPT {… in scalbn() function
1698 inline _LIBCPP_INLINE_VISIBILITY long double scalbn(long double __lcpp_x, int __lcpp_y) _NOEXCEPT {… in scalbn() function
1703 scalbn(_A1 __lcpp_x, int __lcpp_y) _NOEXCEPT {return ::scalbn((double)__lcpp_x, __lcpp_y);} in scalbn() function
/llvm-project-15.0.7/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp97 Ambiguous scalbn(Ambiguous, Ambiguous){ return Ambiguous(); } in scalbn() function
/llvm-project-15.0.7/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp100 Ambiguous scalbn(Ambiguous, Ambiguous){ return Ambiguous(); } in scalbn() function
/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DAPFloat.h1262 inline APFloat scalbn(APFloat X, int Exp, APFloat::roundingMode RM) { in scalbn() function
/llvm-project-15.0.7/clang/lib/Headers/
H A D__clang_cuda_math.h277 __DEVICE__ double scalbn(double __a, int __b) { return __nv_scalbn(__a, __b); } in scalbn() function
H A Dtgmath.h1165 #define scalbn(__x, __y) __tg_scalbn(__tg_promote1((__x))(__x), __y) macro
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPFloat.cpp4201 IEEEFloat scalbn(IEEEFloat X, int Exp, IEEEFloat::roundingMode RoundingMode) { in scalbn() function
4789 DoubleAPFloat scalbn(const DoubleAPFloat &Arg, int Exp, in scalbn() function
/llvm-project-15.0.7/llvm/unittests/ADT/
H A DAPFloatTest.cpp3293 TEST(APFloatTest, scalbn) { in TEST() argument