| /llvm-project-15.0.7/libcxx/include/ |
| H A D | deque | 1504 return __base::__map_.size() == 0 ? 0 : __base::__map_.size() * __base::__block_size - 1; 1538 __base::__start_ -= __base::__block_size; 1863 return *(*(__base::__map_.begin() + __p / __base::__block_size) + __p % __base::__block_size); 1872 return *(*(__base::__map_.begin() + __p / __base::__block_size) + __p % __base::__block_size); 1883 return *(*(__base::__map_.begin() + __p / __base::__block_size) + __p % __base::__block_size); 1894 return *(*(__base::__map_.begin() + __p / __base::__block_size) + __p % __base::__block_size); 1902 return *(*(__base::__map_.begin() + __base::__start_ / __base::__block_size) 1911 return *(*(__base::__map_.begin() + __base::__start_ / __base::__block_size) 1921 return *(*(__base::__map_.begin() + __p / __base::__block_size) + __p % __base::__block_size); 2434 __base::__start_ += __base::__block_size; [all …]
|
| H A D | limits | 457 typedef typename __base::type type; 470 static _LIBCPP_CONSTEXPR const int radix = __base::radix; 493 static _LIBCPP_CONSTEXPR const bool traps = __base::traps; 549 typedef numeric_limits<_Tp> __base; 563 static _LIBCPP_CONSTEXPR const int radix = __base::radix; 586 static _LIBCPP_CONSTEXPR const bool traps = __base::traps; 642 typedef numeric_limits<_Tp> __base; 656 static _LIBCPP_CONSTEXPR const int radix = __base::radix; 679 static _LIBCPP_CONSTEXPR const bool traps = __base::traps; 735 typedef numeric_limits<_Tp> __base; [all …]
|
| H A D | shared_mutex | 256 if (__base.__state_ & __base.__write_entered_) 261 if ((__base.__state_ & __base.__write_entered_) == 0) 267 __base.__state_ |= __base.__write_entered_; 268 if (__base.__state_ & __base.__n_readers_) 273 if ((__base.__state_ & __base.__n_readers_) == 0) 277 __base.__state_ &= ~__base.__write_entered_; 292 …if ((__base.__state_ & __base.__write_entered_) || (__base.__state_ & __base.__n_readers_) == __ba… 297 if ((__base.__state_ & __base.__write_entered_) == 0 && 298 … (__base.__state_ & __base.__n_readers_) < __base.__n_readers_) 304 unsigned __num_readers = (__base.__state_ & __base.__n_readers_) + 1; [all …]
|
| H A D | charconv | 504 unsigned __base_2 = __base * __base; 510 if (__value < __base) 531 if (__base == 10) [[likely]] 534 switch (__base) { 552 __value /= __base; 571 _LIBCPP_ASSERT(2 <= __base && __base <= 36, "base not in [2, 36]"); 634 __in_pattern(_Tp __c, int __base) 636 if (__base <= 10) 722 if (__base == 10) 761 __base); [all …]
|
| H A D | map | 1010 __base __tree_; 1103 _NOEXCEPT_(is_nothrow_move_constructible<__base>::value) 1112 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) 1149 : __tree_(typename __base::allocator_type(__a)) 1447 _NOEXCEPT_(__is_nothrow_swappable<__base>::value) 1537 typedef typename __base::__node __node; 1787 __base __tree_; 1889 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) 1926 : __tree_(typename __base::allocator_type(__a)) 2119 _NOEXCEPT_(__is_nothrow_swappable<__base>::value) [all …]
|
| H A D | set | 536 __base __tree_; 539 typedef typename __base::pointer pointer; 541 typedef typename __base::size_type size_type; 543 typedef typename __base::const_iterator iterator; 666 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) 1069 __base __tree_; 1072 typedef typename __base::pointer pointer; 1074 typedef typename __base::size_type size_type; 1076 typedef typename __base::const_iterator iterator; 1198 _NOEXCEPT_(is_nothrow_move_assignable<__base>::value) [all …]
|
| H A D | future | 1705 __base* __get_buf() { return (__base*)&__buf_; } 1708 __base* __f_; 1743 __f_ = (__base*)&__buf_; 1762 __f_ = (__base*)&__buf_; 1785 __f_ = (__base*)&__buf_; 1838 if (__f_ == (__base*)&__buf_ && __f.__f_ == (__base*)&__f.__buf_) 1841 __base* __t = (__base*)&__tempbuf; 1848 __f_ = (__base*)&__buf_; 1851 __f.__f_ = (__base*)&__f.__buf_; 1853 else if (__f_ == (__base*)&__buf_) [all …]
|
| H A D | variant | 471 struct __base { 492 struct __base { 609 return __base::__visit_alt_at(__index, 618 return __base::__visit_alt( 775 class _LIBCPP_TEMPLATE_VIS __base { 819 friend struct __access::__base; 820 friend struct __visitation::__base; 859 __visitation::__base::__visit_alt( 898 __visitation::__base::__visit_alt_at( 1038 __visitation::__base::__visit_alt_at( [all …]
|
| H A D | optional | 337 using __base = __optional_destruct_base<_Tp>; 339 using __base::__base; 649 using __base = __optional_move_assign_base<_Tp>; 762 : __base(in_place, _VSTD::forward<_Args>(__args)...) {} 769 : __base(in_place, __il, _VSTD::forward<_Args>(__args)...) {} 776 : __base(in_place, _VSTD::forward<_Up>(__v)) {} 783 : __base(in_place, _VSTD::forward<_Up>(__v)) {} 825 …: __base(__optional_construct_from_invoke_tag{}, _VSTD::forward<_Fp>(__f), _VSTD::forward<_Args>(_… 1000 using __base::has_value; 1001 using __base::__get; [all …]
|
| /llvm-project-15.0.7/libcxx/include/__functional/ |
| H A D | function.h | 264 __base(const __base&); 265 __base& operator=(const __base&); 1262 __base(const __base&); 1263 __base& operator=(const __base&); 1281 __base(const __base&); 1282 __base& operator=(const __base&); 1300 __base(const __base&); 1301 __base& operator=(const __base&); 1319 __base(const __base&); 1320 __base& operator=(const __base&); [all …]
|
| /llvm-project-15.0.7/libcxx/include/__support/musl/ |
| H A D | xlocale.h | 28 strtoll_l(const char *__nptr, char **__endptr, int __base, locale_t) { in strtoll_l() argument 29 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 33 strtoull_l(const char *__nptr, char **__endptr, int __base, locale_t) { in strtoull_l() argument 34 return ::strtoull(__nptr, __endptr, __base); in strtoull_l() 38 wcstoll_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) { in wcstoll_l() argument 39 return ::wcstoll(__nptr, __endptr, __base); in wcstoll_l() 43 wcstoull_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) { in wcstoull_l() argument 44 return ::wcstoull(__nptr, __endptr, __base); in wcstoull_l()
|
| /llvm-project-15.0.7/libcxx/include/__support/xlocale/ |
| H A D | __strtonum_fallback.h | 38 strtoll_l(const char *__nptr, char **__endptr, int __base, locale_t) { in strtoll_l() argument 39 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 43 strtoull_l(const char *__nptr, char **__endptr, int __base, locale_t) { in strtoull_l() argument 44 return ::strtoull(__nptr, __endptr, __base); in strtoull_l() 48 wcstoll_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) { in wcstoll_l() argument 49 return ::wcstoll(__nptr, __endptr, __base); in wcstoll_l() 53 wcstoull_l(const wchar_t *__nptr, wchar_t **__endptr, int __base, locale_t) { in wcstoull_l() argument 54 return ::wcstoull(__nptr, __endptr, __base); in wcstoull_l()
|
| /llvm-project-15.0.7/libcxx/include/__support/solaris/ |
| H A D | xlocale.h | 36 strtoll_l(const char *__nptr, char **__endptr, int __base, locale_t __loc) { in strtoll_l() argument 37 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 41 strtol_l(const char *__nptr, char **__endptr, int __base, locale_t __loc) { in strtol_l() argument 42 return ::strtol(__nptr, __endptr, __base); in strtol_l() 46 strtoull_l(const char *__nptr, char **__endptr, int __base, locale_t __loc) 47 return ::strtoull(__nptr, __endptr, __base); 51 strtoul_l(const char *__nptr, char **__endptr, int __base, locale_t __loc) { in strtoul_l() argument 52 return ::strtoul(__nptr, __endptr, __base); in strtoul_l()
|
| /llvm-project-15.0.7/libcxx/include/__support/ibm/ |
| H A D | xlocale.h | 59 strtoll_l(const char *__nptr, char **__endptr, int __base, locale_t locale) { in strtoll_l() argument 61 return ::strtoll(__nptr, __endptr, __base); in strtoll_l() 65 strtol_l(const char *__nptr, char **__endptr, int __base, locale_t locale) { in strtol_l() argument 67 return ::strtol(__nptr, __endptr, __base); in strtol_l() 89 strtoull_l(const char *__nptr, char **__endptr, int __base, locale_t locale) { in strtoull_l() argument 91 return ::strtoull(__nptr, __endptr, __base); in strtoull_l() 95 strtoul_l(const char *__nptr, char **__endptr, int __base, locale_t locale) { in strtoul_l() argument 97 return ::strtoul(__nptr, __endptr, __base); in strtoul_l()
|
| /llvm-project-15.0.7/libcxx/src/ |
| H A D | shared_mutex.cpp | 109 shared_timed_mutex::shared_timed_mutex() : __base() {} in shared_timed_mutex() 110 void shared_timed_mutex::lock() { return __base.lock(); } in lock() 111 bool shared_timed_mutex::try_lock() { return __base.try_lock(); } in try_lock() 112 void shared_timed_mutex::unlock() { return __base.unlock(); } in unlock() 113 void shared_timed_mutex::lock_shared() { return __base.lock_shared(); } in lock_shared() 114 bool shared_timed_mutex::try_lock_shared() { return __base.try_lock_shared(); } in try_lock_shared() 115 void shared_timed_mutex::unlock_shared() { return __base.unlock_shared(); } in unlock_shared()
|
| /llvm-project-15.0.7/libcxx/include/__support/openbsd/ |
| H A D | xlocale.h | 25 strtol_l(const char *__nptr, char **__endptr, int __base, locale_t) { in strtol_l() argument 26 return ::strtol(__nptr, __endptr, __base); in strtol_l() 30 strtoul_l(const char *__nptr, char **__endptr, int __base, locale_t) { in strtoul_l() argument 31 return ::strtoul(__nptr, __endptr, __base); in strtoul_l()
|
| /llvm-project-15.0.7/libcxx/include/__random/ |
| H A D | generate_canonical.h | 42 _RealType __base = _Rp; in generate_canonical() local 44 for (size_t __i = 1; __i < __k; ++__i, __base *= _Rp) in generate_canonical() 45 _Sp += (__g() - _URNG::min()) * __base; in generate_canonical() 46 return _Sp / __base; in generate_canonical()
|
| /llvm-project-15.0.7/libcxx/include/__support/android/ |
| H A D | locale_bionic.h | 60 strtol_l(const char* __nptr, char** __endptr, int __base, locale_t) { in strtol_l() argument 61 return ::strtol(__nptr, __endptr, __base); in strtol_l()
|
| /llvm-project-15.0.7/libcxx/include/__filesystem/ |
| H A D | operations.h | 148 inline _LIBCPP_INLINE_VISIBILITY path proximate(const path& __p, const path& __base, error_code& __… in proximate() argument 152 path __tmp_base = __weakly_canonical(__base, &__ec); in proximate() 159 …t path& __p, const path& __base = current_path()) { return __weakly_canonical(__p).lexically_proxi… 163 inline _LIBCPP_INLINE_VISIBILITY path relative(const path& __p, const path& __base, error_code& __e… in relative() argument 167 path __tmpbase = __weakly_canonical(__base, &__ec); in relative() 174 …t path& __p, const path& __base = current_path()) { return __weakly_canonical(__p).lexically_relat…
|
| /llvm-project-15.0.7/clang/lib/Headers/ |
| H A D | __clang_cuda_cmath.h | 161 __DEVICE__ float pow(float __base, float __exp) { in pow() argument 162 return ::powf(__base, __exp); in pow() 164 __DEVICE__ float pow(float __base, int __iexp) { in pow() argument 165 return ::powif(__base, __iexp); in pow() 167 __DEVICE__ double pow(double __base, int __iexp) { in pow() argument 168 return ::powi(__base, __iexp); in pow()
|
| H A D | __clang_hip_cmath.h | 152 __DEVICE__ __CONSTEXPR__ float pow(float __base, int __iexp) { in pow() argument 153 return ::powif(__base, __iexp); in pow() 155 __DEVICE__ __CONSTEXPR__ double pow(double __base, int __iexp) { in pow() argument 156 return ::powi(__base, __iexp); in pow() 176 __DEVICE__ __CONSTEXPR__ _Float16 pow(_Float16 __base, int __iexp) { in pow() argument 177 return __ocml_pown_f16(__base, __iexp); in pow()
|
| /llvm-project-15.0.7/libcxx/include/__format/ |
| H A D | formatter_integral.h | 147 _LIBCPP_HIDE_FROM_ABI char* __to_buffer(char* __first, char* __last, _Tp __value, int __base) { in __to_buffer() argument 150 to_chars_result __r = _VSTD::to_chars(__first, __last, __value, __base); in __to_buffer() 209 int __base) -> decltype(__ctx.out()) { 215 char* __last = __formatter::__to_buffer(__first, __end, __value, __base);
|
| /llvm-project-15.0.7/pstl/include/pstl/internal/omp/ |
| H A D | util.h | 159 __process_chunk(const __chunk_metrics& __metrics, _Iterator __base, _Index __chunk_index, _Func __f) in __process_chunk() argument 165 auto __first = __base + __index; in __process_chunk()
|
| /llvm-project-15.0.7/libcxx/include/__ranges/ |
| H A D | filter_view.h | 65 constexpr filter_view(_View __base, _Pred __pred) in filter_view() argument 66 : __base_(std::move(__base)), __pred_(in_place, std::move(__pred)) in filter_view()
|
| H A D | join_view.h | 84 constexpr explicit join_view(_View __base) 85 : __base_(std::move(__base)) {}
|