| /llvm-project-15.0.7/libcxx/include/__format/ |
| H A D | formatter_integral.h | 46 _LIBCPP_HIDE_FROM_ABI inline char* __insert_sign(char* __buf, bool __negative, __format_spec::__sig… in __insert_sign() argument 48 *__buf++ = '-'; in __insert_sign() 56 *__buf++ = '+'; in __insert_sign() 59 *__buf++ = ' '; in __insert_sign() 63 return __buf; in __insert_sign()
|
| /llvm-project-15.0.7/libcxx/include/__algorithm/ |
| H A D | stable_sort.h | 216 pair<value_type*, ptrdiff_t> __buf(0, 0); in __stable_sort_impl() 221 __buf = std::get_temporary_buffer<value_type>(__len); in __stable_sort_impl() local 223 __h.reset(__buf.first); in __stable_sort_impl() 227 …std::__stable_sort<_AlgPolicy, _Comp_ref>(__first, __last, __comp, __len, __buf.first, __buf.secon… in __stable_sort_impl()
|
| H A D | inplace_merge.h | 224 pair<value_type*, ptrdiff_t> __buf = _VSTD::get_temporary_buffer<value_type>(__buf_size); in __inplace_merge() local 226 unique_ptr<value_type, __return_temporary_buffer> __h(__buf.first); in __inplace_merge() 228 …first), std::move(__middle), std::move(__last), __comp, __len1, __len2, __buf.first, __buf.second); in __inplace_merge()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | deque | 2269 __buf.__construct_at_end(__f, __l); 2271 return insert(__p, move_iterator<__bi>(__buf.begin()), move_iterator<__bi>(__buf.end())); 2282 __buf.__construct_at_end(__f, __l); 2284 return insert(__p, move_iterator<__fwd>(__buf.begin()), move_iterator<__fwd>(__buf.end())); 2469 __buf.push_back(__hold.get()); 2474 __buf.push_back(*__i); 2549 __i != __buf.end(); ++__i) 2561 __buf.push_back(*__i); 2612 __buf.push_back(__hold.get()); 2617 __buf.push_front(*--__i); [all …]
|
| H A D | locale | 934 __buf.resize(__buf.capacity()); 945 __buf.resize(2*__buf.size()); 946 __buf.resize(__buf.capacity()); 991 __buf.resize(__buf.capacity()); 1002 __buf.resize(2*__buf.size()); 1003 __buf.resize(__buf.capacity()); 1043 __buf.resize(__buf.capacity()); 1056 __buf.resize(2*__buf.size()); 1057 __buf.resize(__buf.capacity()); 1095 __buf.resize(__buf.capacity()); [all …]
|
| H A D | __locale | 1555 char __buf[__sz]; 1559 __buf, __buf+__sz, __bn); 1562 for (const char* __p = __buf; __p < __bn; ++__p, ++__s) 1591 char __buf[__sz]; 1595 __buf, __buf+__sz, __bn); 1598 for (const char* __p = __buf; __p < __bn; ++__p, ++__s) 1649 char16_t __buf[__sz]; 1653 __buf, __buf+__sz, __bn); 1656 for (const char16_t* __p = __buf; __p < __bn; ++__p, ++__s) 1685 char32_t __buf[__sz]; [all …]
|
| H A D | any | 315 __any_imp::_Buffer __buf; 385 _Tp * __ret = static_cast<_Tp*>(static_cast<void*>(&__dest.__s.__buf)); 397 _Tp * __p = static_cast<_Tp *>(static_cast<void*>(&__this.__s.__buf)); 405 static_cast<void const *>(&__this.__s.__buf))); 411 *static_cast<_Tp*>(static_cast<void*>(&__this.__s.__buf)))); 421 return static_cast<void*>(&__this.__s.__buf);
|
| H A D | __split_buffer | 247 __split_buffer __buf(__new_cap, 0, __a); 248 for (pointer __p = __begin_; __p != __end_; ++__p, (void) ++__buf.__end_) 249 __alloc_traits::construct(__buf.__alloc(), 250 _VSTD::__to_address(__buf.__end_), _VSTD::move(*__p)); 251 swap(__buf);
|
| H A D | istream | 580 operator>>(basic_istream<_CharT, _Traits>& __is, _CharT (&__buf)[_Np]) 585 return _VSTD::__input_c_string(__is, __buf, __n); 591 operator>>(basic_istream<char, _Traits>& __is, unsigned char (&__buf)[_Np]) 593 return __is >> (char(&)[_Np])__buf; 599 operator>>(basic_istream<char, _Traits>& __is, signed char (&__buf)[_Np]) 601 return __is >> (char(&)[_Np])__buf;
|
| /llvm-project-15.0.7/pstl/include/pstl/internal/omp/ |
| H A D | parallel_scan.h | 81 __buffer<_Tp> __buf(__m + 1); in __parallel_strict_scan_body() 82 _Tp* __r = __buf.get(); in __parallel_strict_scan_body()
|
| /llvm-project-15.0.7/pstl/include/pstl/internal/ |
| H A D | parallel_backend_tbb.h | 370 __buffer<_Tp> __buf(__m + 1); in __parallel_strict_scan() 371 _Tp* __r = __buf.get(); in __parallel_strict_scan() 1174 __buffer<_ValueType> __buf(__n); 1176 __xs, __xe, __buf.get(), true, __comp, __leaf_sort, __nsort, __xs, __buf.get()};
|
| H A D | algorithm_impl.h | 1282 __par_backend::__buffer<_Tp> __buf(__n); in __remove_elements() 1283 _Tp* __result = __buf.get(); in __remove_elements() 1655 __par_backend::__buffer<_Tp> __buf(__n - __m); in __pattern_rotate() 1659 _Tp* __result = __buf.get(); in __pattern_rotate() 1680 __par_backend::__buffer<_Tp> __buf(__m); in __pattern_rotate() 1684 _Tp* __result = __buf.get(); in __pattern_rotate() 2326 __par_backend::__buffer<_T1> __buf(__n1); in __pattern_partial_sort_copy() 2327 _T1* __r = __buf.get(); in __pattern_partial_sort_copy() 2791 __par_backend::__buffer<_Tp> __buf(__n); in __pattern_inplace_merge() 2792 _Tp* __r = __buf.get(); in __pattern_inplace_merge() [all …]
|
| /llvm-project-15.0.7/libcxx/include/__functional/ |
| H A D | function.h | 710 static _Rp __call_impl(const __policy_storage* __buf, 714 ? &__buf->__small 715 : __buf->__large);
|