Home
last modified time | relevance | path

Searched refs:__exp (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h65 return ::frexpf(__arg, __exp); in frexp()
156 return ::ldexpf(__arg, __exp); in ldexp()
162 return ::powf(__base, __exp); in pow()
320 frexp(__T __x, int *__exp) {
321 return std::frexp((double)__x, __exp);
327 ldexp(__T __x, int __exp) {
328 return std::ldexp((double)__x, __exp);
343 scalbln(__T __x, long __exp) {
344 return std::scalbln((double)__x, __exp);
350 scalbn(__T __x, int __exp) {
[all …]
H A D__clang_hip_cmath.h65 return ::frexpf(__arg, __exp); in frexp()
574 frexp(__T __x, int *__exp) {
575 return ::frexp((double)__x, __exp);
581 ldexp(__T __x, int __exp) {
582 return ::ldexp((double)__x, __exp);
588 modf(__T __x, double *__exp) {
589 return ::modf((double)__x, __exp);
616 scalbln(__T __x, long int __exp) {
617 return ::scalbln((double)__x, __exp);
623 scalbn(__T __x, int __exp) {
[all …]
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2fixed.cpp469 int32_t __exp = 0; in __d2exp_buffered_n() local
493 __exp = __i * 9 + static_cast<int32_t>(__availableDigits) - 1; in __d2exp_buffered_n()
576 const int32_t __rexp = static_cast<int32_t>(__precision) - __exp; in __d2exp_buffered_n()
615 ++__exp; in __d2exp_buffered_n()
636 if (__exp < 0) { in __d2exp_buffered_n()
638 __exp = -__exp; in __d2exp_buffered_n()
643 const int _Exponent_part_length = __exp >= 100 in __d2exp_buffered_n()
654 if (__exp >= 100) { in __d2exp_buffered_n()
655 const int32_t __c = __exp % 10; in __d2exp_buffered_n()
656 std::memcpy(_First, __DIGIT_TABLE + 2 * (__exp / 10), 2); in __d2exp_buffered_n()
[all …]
H A Df2s.cpp287 const int32_t __exp = __e10 + __removed; in __f2d() local
290 __fd.__exponent = __exp; in __f2d()
H A Dd2s.cpp347 const int32_t __exp = __e10 + __removed; in __d2d() local
350 __fd.__exponent = __exp; in __d2d()
/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_base_10.h134 _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline __uint128_t __pow_10(int __exp) noexcept… in __pow_10() argument
135 _LIBCPP_ASSERT_INTERNAL(__exp >= __pow10_128_offset, "Index out of bounds"); in __pow_10()
136 return __pow10_128[__exp - __pow10_128_offset]; in __pow_10()
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcmath720 __exp += 1;
722 return _Tp(__exp);
738 if (__exp == _Tp(0))
745 if (__exp > 0) {
747 --__exp;
749 ++__exp;
750 __exp = -__exp;
754 while (__exp > 0) {
755 if (!(__exp & 1)) {
757 __exp >>= 1;
[all …]
H A Dregex2711 : base(__s), __exp_(__exp), __mexp_(__mexp), __invert_(__invert) {}
3679 basic_regex __exp;
3680 __exp.__flags_ = __flags_;
3681 __temp = __exp.__parse(++__temp, __last);
3682 unsigned __mexp = __exp.__marked_count_;
3683 __push_lookahead(std::move(__exp), false, __marked_count_);
3690 basic_regex __exp;
3691 __exp.__flags_ = __flags_;
3692 __temp = __exp.__parse(++__temp, __last);
3693 unsigned __mexp = __exp.__marked_count_;
[all …]
H A Dlocale384 char& __exp,
521 char& __exp,
554 if (__a_end == __a || (std::toupper(__a_end[-1]) == std::toupper(__exp))) {
561 __exp = 'P';
562 else if (std::toupper(__x) == __exp) {
563 __exp = std::tolower(__exp);
957 char __exp = 'E';
969 __exp,
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dhh_mm_ss.h35 _LIBCPP_HIDE_FROM_ABI static constexpr uint64_t __pow10(unsigned __exp) { in __pow10() argument
37 for (unsigned __i = 0; __i < __exp; ++__i) in __pow10()
/freebsd/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/
H A Dcmath82 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _Tp __constexpr_scalbn(_Tp __x, int __exp) {
83 return ::scalbn(__x, __exp);
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcmath109 __DEVICE__ float ldexp(float __arg, int __exp) {
110 return ::ldexpf(__arg, __exp);