Home
last modified time | relevance | path

Searched refs:_ValueType (Results 1 – 12 of 12) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/src/include/
H A Datomic_support.h57 template <class _ValueType>
67 template <class _ValueType>
73 template <class _ValueType>
75 _ValueType* __val,
76 _ValueType* __expected,
77 _ValueType __after,
97 template <class _ValueType>
107 template <class _ValueType>
109 __libcpp_atomic_exchange(_ValueType* __target, _ValueType __value, int = _AO_Seq) {
115 template <class _ValueType>
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dany143 template <class _ValueType>
146 template <class _ValueType>
214 template <class _ValueType,
220 template <class _ValueType,
521 template <class _ValueType>
533 template <class _ValueType>
545 template <class _ValueType>
557 template <class _ValueType>
559 static_assert(!is_void_v<_ValueType>, "_ValueType may not be void.");
574 template <class _ValueType>
[all …]
H A Dcomplex866 typedef double _ValueType;
873 typedef _Tp _ValueType;
885 …E_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename __libcpp_complex_overload_traits<_Tp>::_ValueType
898 …E_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 typename __libcpp_complex_overload_traits<_Tp>::_ValueType
944 …E_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 typename __libcpp_complex_overload_traits<_Tp>::_ValueType
946 typedef typename __libcpp_complex_overload_traits<_Tp>::_ValueType _ValueType;
947 return static_cast<_ValueType>(__re) * __re;
H A Ddeque250 template <class _ValueType, class _DiffType>
252 static const _DiffType value = sizeof(_ValueType) < 256 ? 4096 / sizeof(_ValueType) : 16;
255 template <class _ValueType,
266 __deque_block_size<_ValueType, _DiffType>::value
283 typedef _ValueType value_type;
414 template <class _ValueType, class _Pointer, class _Reference, class _MapPointer, class _DiffType, _…
416 __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer, _DiffType, _BlockSize> > {
418 …using _Iterator = __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer, _DiffType, _Bloc…
442 template <class _ValueType, class _Pointer, class _Reference, class _MapPointer, class _DiffType, _…
443 const _DiffType __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer, _DiffType, _BlockSi…
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__memory/
H A Duninitialized_algorithms.h127 ::new (std::__voidify(*__idx)) _ValueType(__x); in __uninitialized_fill()
155 ::new (std::__voidify(*__idx)) _ValueType(__x); in __uninitialized_fill_n()
185 ::new (std::__voidify(*__idx)) _ValueType; in __uninitialized_default_construct()
211 ::new (std::__voidify(*__idx)) _ValueType; in __uninitialized_default_construct_n()
238 ::new (std::__voidify(*__idx)) _ValueType(); in __uninitialized_value_construct()
264 ::new (std::__voidify(*__idx)) _ValueType(); in __uninitialized_value_construct_n()
283 template <class _ValueType,
325 template <class _ValueType,
355 return std::__uninitialized_move_n<_ValueType>( in uninitialized_move_n()
378 if constexpr (is_array_v<_ValueType>) { in __allocator_destroy_multidimensional()
[all …]
H A Dranges_uninitialized_algorithms.h51 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
77 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
96 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
122 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
141 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
167 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
193 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; in operator() local
196 auto __result = std::__uninitialized_copy<_ValueType>( in operator()
262 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; in operator() local
265 auto __result = std::__uninitialized_move<_ValueType>( in operator()
[all …]
H A Dshared_ptr.h78 template <class _ValueType>
79 inline _LIBCPP_HIDE_FROM_ABI _ValueType __libcpp_relaxed_load(_ValueType const* __value) { in __libcpp_relaxed_load()
88 template <class _ValueType>
89 inline _LIBCPP_HIDE_FROM_ABI _ValueType __libcpp_acquire_load(_ValueType const* __value) { in __libcpp_acquire_load()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DThreadSafeDenseMap.h18 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-14.2/contrib/llvm-project/libcxx/include/__memory_resource/
H A Dpolymorphic_allocator.h37 template <class _ValueType
45 using value_type = _ValueType;
63 _LIBCPP_NODISCARD_AFTER_CXX17 _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-14.2/contrib/llvm-project/libcxx/include/__fwd/
H A Dmemory_resource.h22 template <class _ValueType>
/freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/
H A Dsort.h412 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-14.2/contrib/llvm-project/lldb/docs/
H A Dpython_api_enums.rst491 .. _ValueType: