/freebsd/contrib/llvm-project/libcxx/src/include/ |
H A D | atomic_support.h | 47 template <class _ValueType, class _FromType> 48 inline _LIBCPP_HIDE_FROM_ABI void __libcpp_atomic_store(_ValueType* __dest, _FromType __val, int __order = _AO_Seq) { 52 template <class _ValueType, class _FromType> 53 inline _LIBCPP_HIDE_FROM_ABI void __libcpp_relaxed_store(_ValueType* __dest, _FromType __val) { 57 template <class _ValueType> 58 inline _LIBCPP_HIDE_FROM_ABI _ValueType __libcpp_atomic_load(_ValueType const* __val, int __order = _AO_Seq) { 62 template <class _ValueType, class _AddType> 63 inline _LIBCPP_HIDE_FROM_ABI _ValueType __libcpp_atomic_add(_ValueType* __va [all...] |
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | any | 140 template <class _ValueType> 141 _LIBCPP_HIDE_FROM_ABI add_pointer_t<add_const_t<_ValueType>> any_cast(any const*) _NOEXCEPT; 143 template <class _ValueType> 144 _LIBCPP_HIDE_FROM_ABI add_pointer_t<_ValueType> any_cast(any*) _NOEXCEPT; 205 template < class _ValueType, 206 class _Tp = decay_t<_ValueType>, 207 … class = enable_if_t< !is_same<_Tp, any>::value && !__is_inplace_type<_ValueType>::value && 209 _LIBCPP_HIDE_FROM_ABI any(_ValueType&& __value); 211 template <class _ValueType, 213 class _Tp = decay_t<_ValueType>, [all …]
|
H A D | complex | 897 typedef double _ValueType; 904 typedef _Tp _ValueType; 916 …E_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename __libcpp_complex_overload_traits<_Tp>::_ValueType 929 …E_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename __libcpp_complex_overload_traits<_Tp>::_ValueType 975 …E_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 typename __libcpp_complex_overload_traits<_Tp>::_ValueType 977 typedef typename __libcpp_complex_overload_traits<_Tp>::_ValueType _ValueType; 978 return static_cast<_ValueType>(__re) * __re;
|
H A D | deque | 249 template <class _ValueType, class _DiffType> 251 static const _DiffType value = sizeof(_ValueType) < 256 ? 4096 / sizeof(_ValueType) : 16; 254 template <class _ValueType, 265 __deque_block_size<_ValueType, _DiffType>::value 282 typedef _ValueType value_type; 439 template <class _ValueType, class _Pointer, class _Reference, class _MapPointer, class _DiffType, _… 441 __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer, _DiffType, _BlockSize> > { 443 …using _Iterator = __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer, _DiffType, _Bloc… 467 template <class _ValueType, class _Pointer, class _Reference, class _MapPointer, class _DiffType, _… 468 const _DiffType __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer, _DiffType, _BlockSi… [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/__memory/ |
H A D | uninitialized_algorithms.h | 58 template <class _ValueType, class _InputIterator, class _Sentinel1, class _ForwardIterator, class _… 66 ::new (std::__voidify(*__idx)) _ValueType(*__ifirst); in __uninitialized_copy() 80 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in uninitialized_copy() typedef 81 auto __result = std::__uninitialized_copy<_ValueType>( in uninitialized_copy() 88 template <class _ValueType, class _InputIterator, class _Size, class _ForwardIterator, class _EndPr… 96 ::new (std::__voidify(*__idx)) _ValueType(*__ifirst); in __uninitialized_copy_n() 110 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in uninitialized_copy_n() typedef 112 …std::__uninitialized_copy_n<_ValueType>(std::move(__ifirst), __n, std::move(__ofirst), __always_fa… in uninitialized_copy_n() 118 template <class _ValueType, class _ForwardIterator, class _Sentinel, class _Tp> 126 ::new (std::__voidify(*__idx)) _ValueType(__x); in __uninitialized_fill() [all …]
|
H A D | ranges_uninitialized_algorithms.h | 51 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() 52 return std::__uninitialized_default_construct<_ValueType>(std::move(__first), std::move(__last)); in operator() 77 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() 78 return std::__uninitialized_default_construct_n<_ValueType>(std::move(__first), __n); in operator() 96 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local 97 return std::__uninitialized_value_construct<_ValueType>(std::move(__first), std::move(__last)); in operator() 122 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() 123 return std::__uninitialized_value_construct_n<_ValueType>(std::move(__first), __n); in operator() local 141 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; 142 return std::__uninitialized_fill<_ValueType>(st 49 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; operator() local 76 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; operator() local 144 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; operator() local 171 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; operator() local 197 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; operator() local 234 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; operator() local 262 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; operator() local 299 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; operator() local [all...] |
H A D | shared_ptr.h | 77 template <class _ValueType> 78 inline _LIBCPP_HIDE_FROM_ABI _ValueType __libcpp_relaxed_load(_ValueType const* __value) { in __libcpp_relaxed_load() 87 template <class _ValueType> 88 inline _LIBCPP_HIDE_FROM_ABI _ValueType __libcpp_acquire_load(_ValueType const* __value) { in __libcpp_acquire_load()
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/ |
H A D | glue_memory_impl.h |
|
H A D | memory_impl.h |
|
H A D | unseq_backend_simd.h |
|
H A D | parallel_backend_utils.h |
|
H A D | glue_numeric_impl.h |
|
H A D | glue_algorithm_impl.h |
|
H A D | parallel_backend_tbb.h |
|
H A D | algorithm_impl.h |
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | ThreadSafeDenseMap.h | 18 template <typename _KeyType, typename _ValueType> class ThreadSafeDenseMap { 20 typedef llvm::DenseMap<_KeyType, _ValueType> LLVMMapType; 25 void Insert(_KeyType k, _ValueType v) { in Insert() 35 _ValueType Lookup(_KeyType k) { in Lookup() 40 bool Lookup(_KeyType k, _ValueType &v) { in Lookup()
|
/freebsd/contrib/llvm-project/libcxx/include/__memory_resource/ |
H A D | polymorphic_allocator.h | 37 template <class _ValueType 45 using value_type = _ValueType; 63 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI _ValueType* allocate(size_t __n) { in allocate() 67 … return static_cast<_ValueType*>(__res_->allocate(__n * sizeof(_ValueType), alignof(_ValueType))); in allocate() 70 _LIBCPP_HIDE_FROM_ABI void deallocate(_ValueType* __p, size_t __n) { in deallocate() 75 __res_->deallocate(__p, __n * sizeof(_ValueType), alignof(_ValueType)); in deallocate()
|
/freebsd/contrib/llvm-project/libcxx/include/experimental/ |
H A D | memory_resource |
|
/freebsd/contrib/llvm-project/libcxx/include/__random/ |
H A D | seed_seq.h | 83 using _ValueType = typename iterator_traits<_RandomAccessIterator>::value_type; in generate() local 84 static_assert(is_unsigned<_ValueType>::value && sizeof(_ValueType) >= sizeof(uint32_t), in generate()
|
/freebsd/contrib/llvm-project/libcxx/include/__fwd/ |
H A D | memory_resource.h | 21 template <class _ValueType>
|
/freebsd/contrib/llvm-project/libcxx/include/__pstl/internal/omp/ |
H A D | parallel_stable_sort.h |
|
/freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
H A D | sort.h | 412 class _ValueType = typename iterator_traits<_RandomAccessIterator>::value_type> 414 __populate_left_bitset(_RandomAccessIterator __first, _Compare __comp, _ValueType& __pivot, uint64_… 428 class _ValueType = typename iterator_traits<_RandomAccessIterator>::value_type> 430 __populate_right_bitset(_RandomAccessIterator __lm1, _Compare __comp, _ValueType& __pivot, uint64_t… 445 class _ValueType = typename iterator_traits<_RandomAccessIterator>::value_type> 450 _ValueType& __pivot,
|
/freebsd/contrib/llvm-project/lldb/docs/ |
H A D | python_api_enums.rst | 491 .. _ValueType:
|