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.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()
580 frexp(__T __x, int *__exp) {
581 return ::frexp((double)__x, __exp);
587 ldexp(__T __x, int __exp) {
588 return ::ldexp((double)__x, __exp);
594 modf(__T __x, double *__exp) {
595 return ::modf((double)__x, __exp);
622 scalbln(__T __x, long int __exp) {
623 return ::scalbln((double)__x, __exp);
[all …]
/freebsd/contrib/llvm-project/libcxx/src/ryu/
H A Dd2fixed.cpp470 int32_t __exp = 0; in __d2exp_buffered_n() local
494 __exp = __i * 9 + static_cast<int32_t>(__availableDigits) - 1; in __d2exp_buffered_n()
537 __exp = -(__i + 1) * 9 + static_cast<int32_t>(__availableDigits) - 1; in __d2exp_buffered_n()
577 const int32_t __rexp = static_cast<int32_t>(__precision) - __exp; in __d2exp_buffered_n()
616 ++__exp; in __d2exp_buffered_n()
637 if (__exp < 0) { in __d2exp_buffered_n()
639 __exp = -__exp; in __d2exp_buffered_n()
644 const int _Exponent_part_length = __exp >= 100 in __d2exp_buffered_n()
655 if (__exp >= 100) { in __d2exp_buffered_n()
656 const int32_t __c = __exp % 10; in __d2exp_buffered_n()
[all …]
H A Df2s.cpp289 const int32_t __exp = __e10 + __removed; in __f2d() local
292 __fd.__exponent = __exp; in __f2d()
H A Dd2s.cpp348 const int32_t __exp = __e10 + __removed; in __d2d() local
351 __fd.__exponent = __exp; in __d2d()
/freebsd/contrib/llvm-project/libcxx/include/__math/
H A Dhypot.h60 constexpr int __exp = std::numeric_limits<_Real>::max_exponent / 2; in __hypot() local
61 const _Real __overflow_threshold = __math::ldexp(_Real(1), __exp); in __hypot()
62 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.h133 _LIBCPP_CONSTEXPR_SINCE_CXX23 _LIBCPP_HIDE_FROM_ABI inline __uint128_t __pow_10(int __exp) _NOEXCEP… in __pow_10() argument
134 _LIBCPP_ASSERT_INTERNAL(__exp >= __pow10_128_offset, "Index out of bounds"); in __pow_10()
135 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) { in __pow10() argument
37 for (unsigned __i = 0; __i < __exp; ++__i) in __pow10()
/freebsd/contrib/llvm-project/libcxx/include/__locale_dir/
H A Dnum.h61 char& __exp,
175 char& __exp, in __stage2_float_loop() argument
208 if (__a_end == __a || (std::toupper(__a_end[-1]) == std::toupper(__exp))) { in __stage2_float_loop()
215 __exp = 'P'; in __stage2_float_loop()
216 else if (std::toupper(__x) == __exp) { in __stage2_float_loop()
217 __exp = std::tolower(__exp); in __stage2_float_loop()
419 char __exp = 'E';
432 __exp,
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dregex2665 …__lookahead(const basic_regex<_CharT, _Traits>& __exp, bool __invert, __node<_CharT>* __s, unsigne…
2666 : base(__s), __exp_(__exp), __mexp_(__mexp), __invert_(__invert) {}
3637 basic_regex __exp;
3638 __exp.__flags_ = __flags_;
3639 __temp = __exp.__parse(++__temp, __last);
3640 unsigned __mexp = __exp.__marked_count_;
3641 __push_lookahead(std::move(__exp), false, __marked_count_);
3648 basic_regex __exp;
3649 __exp.__flags_ = __flags_;
3650 __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,
/freebsd/contrib/llvm-project/libcxx/include/
H A Dregex2713 …__lookahead(const basic_regex<_CharT, _Traits>& __exp, bool __invert, __node<_CharT>* __s, unsigne…
2714 : base(__s), __exp_(__exp), __mexp_(__mexp), __invert_(__invert) {}
3685 basic_regex __exp;
3686 __exp.__flags_ = __flags_;
3687 __temp = __exp.__parse(++__temp, __last);
3688 unsigned __mexp = __exp.__marked_count_;
3689 __push_lookahead(std::move(__exp), false, __marked_count_);
3696 basic_regex __exp;
3697 __exp.__flags_ = __flags_;
3698 __temp = __exp.__parse(++__temp, __last);
[all …]