Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h64 __DEVICE__ float frexp(float __arg, int *__exp) { in frexp() argument
65 return ::frexpf(__arg, __exp); in frexp()
155 __DEVICE__ float ldexp(float __arg, int __exp) { in ldexp() argument
156 return ::ldexpf(__arg, __exp); in ldexp()
161 __DEVICE__ float pow(float __base, float __exp) { in pow() argument
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);
[all …]
H A D__clang_hip_cmath.h64 __DEVICE__ __CONSTEXPR__ float frexp(float __arg, int *__exp) { in frexp() argument
65 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);
[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()
536 __exp = -(__i + 1) * 9 + static_cast<int32_t>(__availableDigits) - 1; in __d2exp_buffered_n()
574 // Is m * 2^__e2 * 10^(__precision + 1 - __exp) integer? 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 > 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/__math/
H A Dhypot.h61 constexpr int __exp = std::numeric_limits<_Real>::max_exponent / 2; in __hypot() local
62 const _Real __overflow_threshold = __math::ldexp(_Real(1), __exp); in __hypot()
63 const _Real __overflow_scale = __math::ldexp(_Real(1), -(__exp + 20)); in __hypot()
/freebsd/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_base_10.h135 _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline __uint128_t __pow_10(int __exp) noexcept… in __pow_10() argument
136 _LIBCPP_ASSERT_INTERNAL(__exp >= __pow10_128_offset, "Index out of bounds"); in __pow_10()
137 return __pow10_128[__exp - __pow10_128_offset]; in __pow_10()
/freebsd/contrib/llvm-project/libcxx/include/__chrono/
H A Dhh_mm_ss.h35 _LIBCPP_HIDE_FROM_ABI static constexpr uint64_t __pow10(unsigned __exp) {
37 for (unsigned __i = 0; __i < __exp; ++__i) in __pow10() argument
/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/libcxx/include/
H A Dregex2705 …__lookahead(const basic_regex<_CharT, _Traits>& __exp, bool __invert, __node<_CharT>* __s, unsigne…
2706 : base(__s), __exp_(__exp), __mexp_(__mexp), __invert_(__invert) {}
3677 basic_regex __exp;
3678 __exp.__flags_ = __flags_;
3679 __temp = __exp.__parse(++__temp, __last);
3680 unsigned __mexp = __exp.__marked_count_;
3681 __push_lookahead(std::move(__exp), false, __marked_count_);
3688 basic_regex __exp;
3689 __exp.__flags_ = __flags_;
3690 __temp = __exp.__parse(++__temp, __last);
[all …]
H A Dlocale395 char& __exp,
532 char& __exp,
565 if (__a_end == __a || (std::toupper(__a_end[-1]) == std::toupper(__exp))) {
572 __exp = 'P';
573 else if (std::toupper(__x) == __exp) {
574 __exp = std::tolower(__exp);
968 char __exp = 'E';
981 __exp,