/freebsd/contrib/llvm-project/libcxx/include/__iterator/ |
H A D | access.h | 34 template <class _Cp> 35 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto begin(_Cp& __c) -> decltype(__c.begin()) { 39 template <class _Cp> 40 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto begin(const _Cp& __c) -> decltype(__c.begi… 44 template <class _Cp> 45 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto end(_Cp& __c) -> decltype(__c.end()) { 49 template <class _Cp> 50 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto end(const _Cp& __c) -> decltype(__c.end())… 56 template <class _Cp> 58 cbegin(const _Cp& __c) noexcept(noexcept(std::begin(__c))) -> decltype(std::begin(__c)) { [all …]
|
H A D | reverse_access.h | 46 template <class _Cp> 47 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto rbegin(_Cp& __c) -> decltype(__c.rbegin()) { 51 template <class _Cp> in rend() 52 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto rbegin(const _Cp& __c) -> decltype(__c.rbegin()) { in rend() 56 template <class _Cp> 57 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto rend(_Cp& __c) -> decltype(__c.rend()) { 61 template <class _Cp> 62 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto rend(const _Cp& __c) -> decltype(__c.rend()) { 66 template <class _Cp> 67 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX17 auto crbegin(const _Cp [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__functional/ |
H A D | weak_result_type.h | 137 template <class _Rp, class _Cp> 138 struct __weak_result_type<_Rp (_Cp::*)()> : public __unary_function<_Cp*, _Rp> {}; 140 template <class _Rp, class _Cp> 141 struct __weak_result_type<_Rp (_Cp::*)() const> : public __unary_function<const _Cp*, _Rp> {}; 143 template <class _Rp, class _Cp> 144 struct __weak_result_type<_Rp (_Cp::*)() volatile> : public __unary_function<volatile _Cp*, _Rp> {}; 146 template <class _Rp, class _Cp> [all...] |
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __bit_reference | 38 template <class _Cp> 46 template <class _Cp, bool = __has_storage_type<_Cp>::value> 48 using __storage_type = typename _Cp::__storage_type; 49 using __storage_pointer = typename _Cp::__storage_pointer; 54 friend typename _Cp::__self; 56 friend class __bit_const_reference<_Cp>; 57 friend class __bit_iterator<_Cp, false>; 60 using __container = typename _Cp::__self; 94 …_LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __bit_iterator<_Cp, false> operator&() const _… 95 return __bit_iterator<_Cp, false>(__seg_, static_cast<unsigned>(std::__libcpp_ctz(__mask_))); [all …]
|
H A D | iomanip | 324 template <class _Cp, class _Traits> 325 …friend basic_istream<_Cp, _Traits>& operator>>(basic_istream<_Cp, _Traits>& __is, const __iom_t9<_… 373 template <class _Cp, class _Traits> 374 …friend basic_ostream<_Cp, _Traits>& operator<<(basic_ostream<_Cp, _Traits>& __os, const __iom_t10<…
|
H A D | unordered_map | 633 class _Cp, 643 _LIBCPP_HIDE_FROM_ABI size_t operator()(const _Cp& __x) const { 659 template <class _Key, class _Cp, class _Hash, class _Pred> 660 class __unordered_map_hasher<_Key, _Cp, _Hash, _Pred, false> { 669 …_LIBCPP_HIDE_FROM_ABI size_t operator()(const _Cp& __x) const { return __hash_(__x.__get_value().f… 683 template <class _Key, class _Cp, class _Hash, class _Pred, bool __b> 685 swap(__unordered_map_hasher<_Key, _Cp, _Hash, _Pred, __b>& __x, 686 … __unordered_map_hasher<_Key, _Cp, _Hash, _Pred, __b>& __y) _NOEXCEPT_(_NOEXCEPT_(__x.swap(__y))) { 691 class _Cp, 701 _LIBCPP_HIDE_FROM_ABI bool operator()(const _Cp& __x, const _Cp& __y) const { [all …]
|
H A D | regex | 2602 template <class _Bp, class _Ap, class _Cp, class _Tp> 2604 …regex_search(_Bp, _Bp, match_results<_Bp, _Ap>&, const basic_regex<_Cp, _Tp>&, regex_constants::ma… 2606 template <class _Ap, class _Cp, class _Tp> 2608 regex_search(const _Cp*, 2609 const _Cp*, 2610 match_results<const _Cp*, _Ap>&, 2611 const basic_regex<_Cp, _Tp>&, 2614 template <class _Bp, class _Cp, class _Tp> 2615 …friend bool regex_search(_Bp, _Bp, const basic_regex<_Cp, _Tp>&, regex_constants::match_flag_type); 2617 template <class _Cp, class _Tp> [all …]
|
H A D | forward_list | 1472 typedef forward_list<_Tp, _Alloc> _Cp; 1473 typedef typename _Cp::const_iterator _Ip;
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | count.h | 44 template <bool _ToCount, class _Cp, bool _IsConst> 45 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 typename __bit_iterator<_Cp, _IsConst>::differe… 46 __count_bool(__bit_iterator<_Cp, _IsConst> __first, typename _Cp::size_type __n) { in __count_bool() argument 47 using _It = __bit_iterator<_Cp, _IsConst>; in __count_bool() 73 template <class, class _Cp, bool _IsConst, class _Tp, class _Proj, __enable_if_t<__is_identity<_Pro… 74 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __iter_diff_t<__bit_iterator<_Cp, _IsConst> > 75 __count(__bit_iterator<_Cp, _IsConst> __first, __bit_iterator<_Cp, _IsConst> __last, const _Tp& __v… in __count() argument 77 return std::__count_bool<true>(__first, static_cast<typename _Cp::size_type>(__last - __first)); in __count() 78 return std::__count_bool<false>(__first, static_cast<typename _Cp::size_type>(__last - __first)); in __count()
|
H A D | fill_n.h | 34 template <bool _FillVal, class _Cp> 36 __fill_n_bool(__bit_iterator<_Cp, false> __first, typename _Cp::size_type __n) { in __fill_n_bool() argument 37 using _It = __bit_iterator<_Cp, false>; in __fill_n_bool() 68 template <class _Cp, class _Size> 69 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __bit_iterator<_Cp, false> 70 __fill_n(__bit_iterator<_Cp, false> __first, _Size __n, const bool& __value) { in __fill_n() argument
|
H A D | find.h | 97 template <bool _ToFind, class _Cp, bool _IsConst> 98 _LIBCPP_CONSTEXPR_SINCE_CXX20 _LIBCPP_HIDE_FROM_ABI __bit_iterator<_Cp, _IsConst> 99 __find_bool(__bit_iterator<_Cp, _IsConst> __first, typename _Cp::size_type __n) { in __find_bool() argument 100 using _It = __bit_iterator<_Cp, _IsConst>; in __find_bool() 133 template <class _Cp, bool _IsConst, class _Tp, class _Proj, __enable_if_t<__is_identity<_Proj>::val… 134 inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 __bit_iterator<_Cp, _IsConst> 135 __find(__bit_iterator<_Cp, _IsConst> __first, __bit_iterator<_Cp, _IsConst> __last, const _Tp& __va… in __find() argument 137 return std::__find_bool<true>(__first, static_cast<typename _Cp::size_type>(__last - __first)); in __find() 138 return std::__find_bool<false>(__first, static_cast<typename _Cp::size_type>(__last - __first)); in __find()
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | linear_congruential_engine.h | 67 template <unsigned long long _Ap, unsigned long long _Cp, unsigned long long _Mp> 68 struct __lce_ta<_Ap, _Cp, _Mp, (unsigned long long)(-1), _LCE_Promote> { 73 const __calc_type __c = static_cast<__calc_type>(_Cp); 143 template <unsigned long long _Ap, unsigned long long _Cp, unsigned long long _Mp> 144 struct __lce_ta<_Ap, _Cp, _Mp, unsigned(-1), _LCE_Schrage> { 148 const result_type __c = static_cast<result_type>(_Cp); 177 template <unsigned long long _Ap, unsigned long long _Cp, unsigned long long _Mp> 178 struct __lce_ta<_Ap, _Cp, _Mp, unsigned(-1), _LCE_Part> { 182 const result_type __c = static_cast<result_type>(_Cp); 191 template <unsigned long long _Ap, unsigned long long _Cp, unsigned long long _Mp> [all …]
|
H A D | mersenne_twister_engine.h | 57 _UInt _Cp, 61 operator==(const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __x, 62 const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 75 _UInt _Cp, 79 operator!=(const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __x, 80 const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __y); 95 _UInt _Cp, 100 const mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _Lp, _Fp>& __x); 115 _UInt _Cp, 120 mersenne_twister_engine<_UInt, _Wp, _Np, _Mp, _Rp, _Ap, _Up, _Dp, _Sp, _Bp, _Tp, _Cp, _L [all...] |
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/ |
H A D | parallel_scan.h |
|
H A D | parallel_transform_scan.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__thread/ |
H A D | formatter.h | 60 … using _Cp = conditional_t<integral<_Tp>, _Tp, conditional_t<is_pointer_v<_Tp>, uintptr_t, void>>; 61 static_assert(!is_same_v<_Cp, void>, "unsupported thread::id type, please file a bug report"); 68 …return __formatter::__format_integer(reinterpret_cast<_Cp>(__get_underlying_id(__id)), __ctx, __sp…
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | parallel_backend_tbb.h |
|
H A D | parallel_backend_serial.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__format/ |
H A D | format_functions.h | 347 template <class _Cp, class... _Args>
|