| /freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
| H A D | operations.h | 62 _LIBCPP_EXPORTED_FROM_ABI path __weakly_canonical(path const& __p, error_code* __ec = nullptr); 69 _LIBCPP_EXPORTED_FROM_ABI bool __fs_is_empty(const path& __p, error_code* __ec = nullptr); 73 inline _LIBCPP_HIDE_FROM_ABI path absolute(const path& __p) { return __absolute(__p); } in absolute() argument 74 …line _LIBCPP_HIDE_FROM_ABI path absolute(const path& __p, error_code& __ec) { return __absolute(__… in absolute() argument 75 inline _LIBCPP_HIDE_FROM_ABI path canonical(const path& __p) { return __canonical(__p); } in canonical() argument 76 …ine _LIBCPP_HIDE_FROM_ABI path canonical(const path& __p, error_code& __ec) { return __canonical(_… in canonical() argument 106 …LIBCPP_HIDE_FROM_ABI bool create_directories(const path& __p) { return __create_directories(__p); } in create_directories() argument 107 inline _LIBCPP_HIDE_FROM_ABI bool create_directories(const path& __p, error_code& __ec) { in create_directories() argument 108 return __create_directories(__p, &__ec); in create_directories() 117 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p) { return __create_directory(__p… in create_directory() argument [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_device_functions.h | 52 __DEVICE__ double __dAtomicAdd(double *__p, double __v) { in __dAtomicAdd() argument 53 return __nvvm_atom_add_gen_d(__p, __v); in __dAtomicAdd() 55 __DEVICE__ double __dAtomicAdd_block(double *__p, double __v) { in __dAtomicAdd_block() argument 56 return __nvvm_atom_cta_add_gen_d(__p, __v); in __dAtomicAdd_block() 58 __DEVICE__ double __dAtomicAdd_system(double *__p, double __v) { in __dAtomicAdd_system() argument 59 return __nvvm_atom_sys_add_gen_d(__p, __v); in __dAtomicAdd_system() 176 __DEVICE__ float __fAtomicAdd(float *__p, float __v) { in __fAtomicAdd() argument 177 return __nvvm_atom_add_gen_f(__p, __v); in __fAtomicAdd() 179 __DEVICE__ float __fAtomicAdd_block(float *__p, float __v) { in __fAtomicAdd_block() argument 180 return __nvvm_atom_cta_add_gen_f(__p, __v); in __fAtomicAdd_block() [all …]
|
| H A D | cetintrin.h | 81 static __inline__ void __DEFAULT_FN_ATTRS _rstorssp(void * __p) { in _rstorssp() argument 82 __builtin_ia32_rstorssp(__p); in _rstorssp() 85 static __inline__ void __DEFAULT_FN_ATTRS _wrssd(unsigned int __a, void * __p) { in _wrssd() argument 86 __builtin_ia32_wrssd(__a, __p); in _wrssd() 90 static __inline__ void __DEFAULT_FN_ATTRS _wrssq(unsigned long long __a, void * __p) { in _wrssq() argument 91 __builtin_ia32_wrssq(__a, __p); in _wrssq() 95 static __inline__ void __DEFAULT_FN_ATTRS _wrussd(unsigned int __a, void * __p) { in _wrussd() argument 96 __builtin_ia32_wrussd(__a, __p); in _wrussd() 100 static __inline__ void __DEFAULT_FN_ATTRS _wrussq(unsigned long long __a, void * __p) { in _wrussq() argument 101 __builtin_ia32_wrussq(__a, __p); in _wrussq() [all …]
|
| H A D | fxsrintrin.h | 30 _fxsave(void *__p) in _fxsave() argument 32 __builtin_ia32_fxsave(__p); in _fxsave() 48 _fxrstor(void *__p) in _fxrstor() argument 50 __builtin_ia32_fxrstor(__p); in _fxrstor() 65 _fxsave64(void *__p) in _fxsave64() argument 67 __builtin_ia32_fxsave64(__p); in _fxsave64() 83 _fxrstor64(void *__p) in _fxrstor64() argument 85 __builtin_ia32_fxrstor64(__p); in _fxrstor64()
|
| H A D | xsavesintrin.h | 21 _xsaves(void *__p, unsigned long long __m) { in _xsaves() argument 22 __builtin_ia32_xsaves(__p, __m); in _xsaves() 26 _xrstors(void *__p, unsigned long long __m) { in _xrstors() argument 27 __builtin_ia32_xrstors(__p, __m); in _xrstors() 32 _xrstors64(void *__p, unsigned long long __m) { in _xrstors64() argument 33 __builtin_ia32_xrstors64(__p, __m); in _xrstors64() 37 _xsaves64(void *__p, unsigned long long __m) { in _xsaves64() argument 38 __builtin_ia32_xsaves64(__p, __m); in _xsaves64()
|
| H A D | xsaveintrin.h | 25 _xsave(void *__p, unsigned long long __m) { in _xsave() argument 26 __builtin_ia32_xsave(__p, __m); in _xsave() 30 _xrstor(void *__p, unsigned long long __m) { in _xrstor() argument 31 __builtin_ia32_xrstor(__p, __m); in _xrstor() 50 _xsave64(void *__p, unsigned long long __m) { in _xsave64() argument 51 __builtin_ia32_xsave64(__p, __m); in _xsave64() 55 _xrstor64(void *__p, unsigned long long __m) { in _xrstor64() argument 56 __builtin_ia32_xrstor64(__p, __m); in _xrstor64()
|
| /freebsd/contrib/llvm-project/libcxx/include/__utility/ |
| H A D | pair.h | 116 _LIBCPP_HIDE_FROM_ABI pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} in pair() 118 _LIBCPP_HIDE_FROM_ABI pair& operator=(pair const& __p) { 119 first = __p.first; 120 second = __p.second; 132 _LIBCPP_HIDE_FROM_ABI pair& operator=(pair<_U1, _U2> const& __p) { 133 first = __p.first; 134 second = __p.second; 173 pair(pair<_U1, _U2>& __p) noexcept((is_nothrow_constructible<first_type, _U1&>::value && in pair() 175 : first(__p.first), second(__p.second) {} in pair() 185 …pair(pair<_U1, _U2> const& __p) noexcept(is_nothrow_constructible<first_type, _U1 const&>::value && in pair() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__functional/ |
| H A D | mem_fun_ref.h | 28 _LIBCPP_HIDE_FROM_ABI explicit mem_fun_t(_Sp (_Tp::*__p)()) : __p_(__p) {} in mem_fun_t() argument 29 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp* __p) const { return (__p->*__p_)(); } in operator() 37 _LIBCPP_HIDE_FROM_ABI explicit mem_fun1_t(_Sp (_Tp::*__p)(_Ap)) : __p_(__p) {} in mem_fun1_t() 38 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp* __p, _Ap __x) const { return (__p->*__p_)(__x); } in operator() 56 _LIBCPP_HIDE_FROM_ABI explicit mem_fun_ref_t(_Sp (_Tp::*__p)()) : __p_(__p) {} in mem_fun_ref_t() argument 57 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp& __p) const { return (__p.*__p_)(); } in operator() 65 _LIBCPP_HIDE_FROM_ABI explicit mem_fun1_ref_t(_Sp (_Tp::*__p)(_Ap)) : __p_(__p) {} in mem_fun1_ref_t() 66 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp& __p, _Ap __x) const { return (__p.*__p_)(__x); } in operator() 84 _LIBCPP_HIDE_FROM_ABI explicit const_mem_fun_t(_Sp (_Tp::*__p)() const) : __p_(__p) {} in const_mem_fun_t() 85 _LIBCPP_HIDE_FROM_ABI _Sp operator()(const _Tp* __p) const { return (__p->*__p_)(); } in operator() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__functional/ |
| H A D | mem_fun_ref.h | 30 _LIBCPP_HIDE_FROM_ABI explicit mem_fun_t(_Sp (_Tp::*__p)()) : __p_(__p) {} in mem_fun_t() argument 31 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp* __p) const { return (__p->*__p_)(); } in operator() 39 _LIBCPP_HIDE_FROM_ABI explicit mem_fun1_t(_Sp (_Tp::*__p)(_Ap)) : __p_(__p) {} in mem_fun1_t() 40 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp* __p, _Ap __x) const { return (__p->*__p_)(__x); } in operator() 58 _LIBCPP_HIDE_FROM_ABI explicit mem_fun_ref_t(_Sp (_Tp::*__p)()) : __p_(__p) {} in mem_fun_ref_t() argument 59 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp& __p) const { return (__p.*__p_)(); } in operator() 67 _LIBCPP_HIDE_FROM_ABI explicit mem_fun1_ref_t(_Sp (_Tp::*__p)(_Ap)) : __p_(__p) {} in mem_fun1_ref_t() 68 _LIBCPP_HIDE_FROM_ABI _Sp operator()(_Tp& __p, _Ap __x) const { return (__p.*__p_)(__x); } in operator() 87 _LIBCPP_HIDE_FROM_ABI explicit const_mem_fun_t(_Sp (_Tp::*__p)() const) : __p_(__p) {} in const_mem_fun_t() 88 _LIBCPP_HIDE_FROM_ABI _Sp operator()(const _Tp* __p) const { return (__p->*__p_)(); } in operator() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__memory/ |
| H A D | auto_ptr.h | 36 _LIBCPP_HIDE_FROM_ABI explicit auto_ptr(_Tp* __p = 0) _NOEXCEPT : __ptr_(__p) {} in __ptr_() argument 37 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() argument 39 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr<_Up>& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() argument 40 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr& __p) _NOEXCEPT { 41 reset(__p.release()); 45 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr<_Up>& __p) _NOEXCEPT { 46 reset(__p.release()); 49 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr_ref<_Tp> __p) _NOEXCEPT { 50 reset(__p.__ptr_); 63 _LIBCPP_HIDE_FROM_ABI void reset(_Tp* __p = 0) _NOEXCEPT { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__memory/ |
| H A D | auto_ptr.h | 34 _LIBCPP_HIDE_FROM_ABI explicit auto_ptr(_Tp* __p = 0) _NOEXCEPT : __ptr_(__p) {} in __ptr_() argument 35 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() argument 37 _LIBCPP_HIDE_FROM_ABI auto_ptr(auto_ptr<_Up>& __p) _NOEXCEPT : __ptr_(__p.release()) {} in auto_ptr() argument 38 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr& __p) _NOEXCEPT { 39 reset(__p.release()); 43 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr<_Up>& __p) _NOEXCEPT { 44 reset(__p.release()); 47 _LIBCPP_HIDE_FROM_ABI auto_ptr& operator=(auto_ptr_ref<_Tp> __p) _NOEXCEPT { 48 reset(__p.__ptr_); 61 _LIBCPP_HIDE_FROM_ABI void reset(_Tp* __p = 0) _NOEXCEPT { [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__utility/ |
| H A D | pair.h | 108 _LIBCPP_HIDE_FROM_ABI pair(const pair<_U1, _U2>& __p) : first(__p.first), second(__p.second) {} in pair() 110 _LIBCPP_HIDE_FROM_ABI pair& operator=(pair const& __p) { 111 first = __p.first; 112 second = __p.second; 124 _LIBCPP_HIDE_FROM_ABI pair& operator=(pair<_U1, _U2> const& __p) { 125 first = __p.first; 126 second = __p.second; 130 _LIBCPP_HIDE_FROM_ABI void swap(pair& __p) { in swap() 132 swap(first, __p.first); in swap() 133 swap(second, __p.second); in swap() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__string/ |
| H A D | char_traits.h | 310 inline _SizeT _LIBCPP_HIDE_FROM_ABI __str_find(const _CharT* __p, _SizeT __sz, _CharT __c, _SizeT _… 313 const _CharT* __r = _Traits::find(__p + __pos, __sz - __pos, __c); 316 return static_cast<_SizeT>(__r - __p); 359 __str_find(const _CharT* __p, _SizeT __sz, const _CharT* __s, _SizeT __pos, _SizeT __n) _NOEXCEPT { 366 …const _CharT* __r = std::__search_substring<_CharT, _Traits>(__p + __pos, __p + __sz, __s, __s + _… 368 if (__r == __p + __sz) 370 return static_cast<_SizeT>(__r - __p); 376 inline _SizeT _LIBCPP_HIDE_FROM_ABI __str_rfind(const _CharT* __p, _SizeT __sz, _CharT __c, _SizeT … 383 for (const _CharT* __ps = __p + __pos; __ps != __p;) { 385 return static_cast<_SizeT>(__ps - __p); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__random/ |
| H A D | negative_binomial_distribution.h | 45 …_HIDE_FROM_ABI explicit param_type(result_type __k = 1, double __p = 0.5) : __k_(__k), __p_(__p) {} in __k_() 63 …_ABI explicit negative_binomial_distribution(result_type __k, double __p = 0.5) : __p_(__k, __p) {} in __p_() argument 65 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(result_type __k = 1, double __p = 0.… 66 : __p_(__k, __p) {} 68 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(const param_type& __p) : __p_(__p) {} in negative_binomial_distribution() argument 77 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); 84 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in param() argument 104 double __p = __pr.p(); in operator() local 107 if (__k <= 21 * __p && sizeof(_IntType) > 1) { in operator() 108 bernoulli_distribution __gen(__p); in operator() [all …]
|
| H A D | bernoulli_distribution.h | 37 _LIBCPP_HIDE_FROM_ABI explicit param_type(double __p = 0.5) : __p_(__p) {} in __p_() argument 54 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(double __p) : __p_(param_type(__p)) {} in bernoulli_distribution() argument 56 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(double __p = 0.5) : __p_(param_type(__p)) {} 58 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(const param_type& __p) : __p_(__p) {} in bernoulli_distribution() argument 67 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); 73 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in param() argument 87 …i_distribution::result_type bernoulli_distribution::operator()(_URNG& __g, const param_type& __p) { in operator() 90 return __gen(__g) < __p.p(); in operator() 112 double __p; variable 113 __is >> __p; [all …]
|
| H A D | geometric_distribution.h | 41 _LIBCPP_HIDE_FROM_ABI explicit param_type(double __p = 0.5) : __p_(__p) {} in __p_() argument 58 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(double __p) : __p_(__p) {} in geometric_distribution() argument 60 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(double __p = 0.5) : __p_(__p) {} 62 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(const param_type& __p) : __p_(__p) {} in geometric_distribution() argument 71 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p) { in operator() 72 return negative_binomial_distribution<result_type>(1, __p.p())(__g); in operator() 79 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in param() argument 109 double __p; variable 110 __is >> __p; 112 __x.param(param_type(__p));
|
| /freebsd/contrib/llvm-project/libcxx/include/__string/ |
| H A D | char_traits.h | 350 __str_find(const _CharT* __p, _SizeT __sz, _CharT __c, _SizeT __pos) _NOEXCEPT { 353 const _CharT* __r = _Traits::find(__p + __pos, __sz - __pos, __c); 356 return static_cast<_SizeT>(__r - __p); 399 __str_find(const _CharT* __p, _SizeT __sz, const _CharT* __s, _SizeT __pos, _SizeT __n) _NOEXCEPT { 406 …const _CharT* __r = std::__search_substring<_CharT, _Traits>(__p + __pos, __p + __sz, __s, __s + _… 408 if (__r == __p + __sz) 410 return static_cast<_SizeT>(__r - __p); 417 __str_rfind(const _CharT* __p, _SizeT __sz, _CharT __c, _SizeT __pos) _NOEXCEPT { 424 for (const _CharT* __ps = __p + __pos; __ps != __p;) { 426 return static_cast<_SizeT>(__ps - __p); [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__random/ |
| H A D | negative_binomial_distribution.h | 45 …_HIDE_FROM_ABI explicit param_type(result_type __k = 1, double __p = 0.5) : __k_(__k), __p_(__p) {} in __k_() 61 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(result_type __k = 1, double __p = 0.… 62 : __p_(__k, __p) {} in __p_() argument 63 …_LIBCPP_HIDE_FROM_ABI explicit negative_binomial_distribution(const param_type& __p) : __p_(__p) {} in negative_binomial_distribution() argument 72 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); 79 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in param() argument 99 double __p = __pr.p(); in operator() local 102 if (__k <= 21 * __p && sizeof(_IntType) > 1) { in operator() 103 bernoulli_distribution __gen(__p); in operator() 117 …return poisson_distribution<result_type>(gamma_distribution<double>(__k, (1 - __p) / __p)(__urng))… in operator() [all …]
|
| H A D | bernoulli_distribution.h | 37 _LIBCPP_HIDE_FROM_ABI explicit param_type(double __p = 0.5) : __p_(__p) {} in __p_() argument 52 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(double __p = 0.5) : __p_(param_type(__p)) {} in __p_() argument 53 _LIBCPP_HIDE_FROM_ABI explicit bernoulli_distribution(const param_type& __p) : __p_(__p) {} in bernoulli_distribution() argument 62 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p); 68 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in param() argument 82 …i_distribution::result_type bernoulli_distribution::operator()(_URNG& __g, const param_type& __p) { in operator() 85 return __gen(__g) < __p.p(); in operator() 107 double __p; variable 108 __is >> __p; 110 __x.param(param_type(__p));
|
| H A D | geometric_distribution.h | 41 _LIBCPP_HIDE_FROM_ABI explicit param_type(double __p = 0.5) : __p_(__p) {} in __p_() argument 56 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(double __p = 0.5) : __p_(__p) {} in __p_() argument 57 _LIBCPP_HIDE_FROM_ABI explicit geometric_distribution(const param_type& __p) : __p_(__p) {} in geometric_distribution() argument 66 _LIBCPP_HIDE_FROM_ABI result_type operator()(_URNG& __g, const param_type& __p) { in operator() 67 return negative_binomial_distribution<result_type>(1, __p.p())(__g); in operator() 74 _LIBCPP_HIDE_FROM_ABI void param(const param_type& __p) { __p_ = __p; } in param() argument 104 double __p; variable 105 __is >> __p; 107 __x.param(param_type(__p));
|
| /freebsd/contrib/llvm-project/libcxx/include/__charconv/ |
| H A D | from_chars_integral.h | 107 auto __p = __find_non_zero(__first, __last); in __subject_seq_combinator() local 108 if (__p == __last || !std::__in_pattern(*__p, __args...)) { in __subject_seq_combinator() 109 if (__p == __first) in __subject_seq_combinator() 113 return {__p, {}}; in __subject_seq_combinator() 117 auto __r = __f(__p, __last, __value, __args...); in __subject_seq_combinator() 137 auto __p = __tx::__read(__f, __l, __a, __b); in __from_chars_atoi() 138 if (__p == __l || !std::__in_pattern(*__p)) { in __from_chars_atoi() 142 return {__p, {}}; in __from_chars_atoi() 145 return {__p, errc::result_out_of_range}; in __from_chars_atoi() 184 [](const char* __p, const char* __lastp, _Tp& __val, int __b) -> from_chars_result { in __from_chars_integral() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__new/ |
| H A D | global_new_delete.h | 40 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p) _NOEXCEPT; 41 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, const std::nothrow_t&) _NOEXCEPT; 43 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, std::size_t __sz) _NOEXCEPT; 49 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p) _NOEXCEPT; 50 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p, const std::nothrow_t&) _NOEXCEPT; 52 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p, std::size_t __sz) _NOEXCEPT; 59 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, std::align_val_t) _NOEXCEPT; 60 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, std::align_val_t, const std::nothrow_t… 62 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete(void* __p, std::size_t __sz, std::align_val_t) _N… 69 _LIBCPP_OVERRIDABLE_FUNC_VIS void operator delete[](void* __p, std::align_val_t) _NOEXCEPT; [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | stable_partition.h | 42 _Pair __p, in __stable_partition_impl() argument 58 if (__len <= __p.second) { // The buffer is big enough to use in __stable_partition_impl() 61 unique_ptr<value_type, __destruct_n&> __h(__p.first, __d); in __stable_partition_impl() 64 value_type* __t = __p.first; in __stable_partition_impl() 82 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, (void)++__i) in __stable_partition_impl() 96 … std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__first, __m, __pred, __len2, __p, __fit); in __stable_partition_impl() 110 …td::__stable_partition_impl<_AlgPolicy, _Predicate&>(__m1, __last, __pred, __len_half, __p, __fit); in __stable_partition_impl() 138 pair<value_type*, ptrdiff_t> __p(0, 0); in __stable_partition_impl() 141 __p.first = __unique_buf.get(); in __stable_partition_impl() 142 __p.second = __unique_buf.get_deleter().__count_; in __stable_partition_impl() [all …]
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/ |
| H A D | stable_partition.h | 40 _Pair __p, in __stable_partition_impl() argument 56 if (__len <= __p.second) { // The buffer is big enough to use in __stable_partition_impl() 59 unique_ptr<value_type, __destruct_n&> __h(__p.first, __d); in __stable_partition_impl() 62 value_type* __t = __p.first; in __stable_partition_impl() 80 for (value_type* __t2 = __p.first; __t2 < __t; ++__t2, (void)++__i) in __stable_partition_impl() 94 … std::__stable_partition_impl<_AlgPolicy, _Predicate&>(__first, __m, __pred, __len2, __p, __fit); in __stable_partition_impl() 108 …td::__stable_partition_impl<_AlgPolicy, _Predicate&>(__m1, __last, __pred, __len_half, __p, __fit); in __stable_partition_impl() 135 pair<value_type*, ptrdiff_t> __p(0, 0); in __stable_partition_impl() 140 __p = std::get_temporary_buffer<value_type>(__len); in __stable_partition_impl() local 142 __h.reset(__p.first); in __stable_partition_impl() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ppc_wrappers/ |
| H A D | bmi2intrin.h | 57 unsigned long __p; in _pdep_u64() local 62 __p = 64 - __builtin_popcountl(__M); in _pdep_u64() 68 __t = __X << (__p - __c); in _pdep_u64() 71 __p++; in _pdep_u64() 79 unsigned long __p = 0x4040404040404040UL; // initial bit permute control in _pext_u64() local 94 __p = (__p << 8) | __c; in _pext_u64() 97 __result = __builtin_bpermd(__p, __X); in _pext_u64() 99 __p = 64 - __builtin_popcountl(__M); in _pext_u64() 109 __t = (__X & (__mask >> __c)) >> (__p - __c); in _pext_u64() 112 __p++; in _pext_u64()
|