Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/src/include/
H A Datomic_support.h69 template <class _ValueType>
71 _ValueType __libcpp_atomic_load(_ValueType const* __val,
79 _ValueType __libcpp_atomic_add(_ValueType* __val, _AddType __a,
85 template <class _ValueType>
87 _ValueType __libcpp_atomic_exchange(_ValueType* __target,
93 template <class _ValueType>
96 _ValueType* __expected, _ValueType __after,
132 _ValueType __libcpp_atomic_load(_ValueType const* __val,
140 _ValueType __libcpp_atomic_add(_ValueType* __val, _AddType __a,
148 _ValueType __libcpp_atomic_exchange(_ValueType* __target,
[all …]
/llvm-project-15.0.7/libcxx/include/__memory/
H A Duninitialized_algorithms.h55 ::new (_VSTD::__voidify(*__idx)) _ValueType(*__ifirst); in __uninitialized_copy()
86 ::new (_VSTD::__voidify(*__idx)) _ValueType(*__ifirst); in __uninitialized_copy_n()
118 ::new (_VSTD::__voidify(*__idx)) _ValueType(__x); in __uninitialized_fill()
151 ::new (_VSTD::__voidify(*__idx)) _ValueType(__x); in __uninitialized_fill_n()
184 ::new (_VSTD::__voidify(*__idx)) _ValueType; in __uninitialized_default_construct()
213 ::new (_VSTD::__voidify(*__idx)) _ValueType; in __uninitialized_default_construct_n()
241 ::new (_VSTD::__voidify(*__idx)) _ValueType(); in __uninitialized_value_construct()
256 (void)_VSTD::__uninitialized_value_construct<_ValueType>( in uninitialized_value_construct()
270 ::new (_VSTD::__voidify(*__idx)) _ValueType(); in __uninitialized_value_construct_n()
374 if constexpr (is_array_v<_ValueType>) { in __allocator_destroy_multidimensional()
[all …]
H A Dranges_uninitialized_algorithms.h48 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
49 return _VSTD::__uninitialized_default_construct<_ValueType>( in operator()
75 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
95 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
96 return _VSTD::__uninitialized_value_construct<_ValueType>( in operator()
122 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
143 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
170 using _ValueType = remove_reference_t<iter_reference_t<_ForwardIterator>>; in operator() local
196 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; in operator() local
233 using _ValueType = remove_reference_t<iter_reference_t<_OutputIterator>>; in operator() local
[all …]
H A Dshared_ptr.h79 template <class _ValueType>
81 _ValueType __libcpp_relaxed_load(_ValueType const* __value) { in __libcpp_relaxed_load()
91 template <class _ValueType>
93 _ValueType __libcpp_acquire_load(_ValueType const* __value) { in __libcpp_acquire_load()
/llvm-project-15.0.7/libcxx/include/
H A Dany131 template <class _ValueType>
136 template <class _ValueType>
212 class _ValueType
220 any(_ValueType && __value);
258 class _ValueType
604 template <class _ValueType>
619 template <class _ValueType>
634 template <class _ValueType>
649 template <class _ValueType>
671 template <class _ValueType>
[all …]
H A Dcomplex801 typedef double _ValueType;
809 typedef _Tp _ValueType;
825 typename __libcpp_complex_overload_traits<_Tp>::_ValueType
843 typename __libcpp_complex_overload_traits<_Tp>::_ValueType
919 typename __libcpp_complex_overload_traits<_Tp>::_ValueType
922 typedef typename __libcpp_complex_overload_traits<_Tp>::_ValueType _ValueType;
923 return static_cast<_ValueType>(__re) * __re;
H A Ddeque220 template <class _ValueType, class _Pointer, class _Reference, class _MapPointer,
312 template <class _ValueType, class _DiffType>
314 static const _DiffType value = sizeof(_ValueType) < 256 ? 4096 / sizeof(_ValueType) : 16;
317 template <class _ValueType, class _Pointer, class _Reference, class _MapPointer,
324 __deque_block_size<_ValueType, _DiffType>::value
339 typedef _ValueType value_type;
584 template <class _ValueType, class _Pointer, class _Reference, class _MapPointer,
586 const _DiffType __deque_iterator<_ValueType, _Pointer, _Reference, _MapPointer,
588 __deque_block_size<_ValueType, _DiffType>::value;
/llvm-project-15.0.7/pstl/include/pstl/internal/
H A Dglue_memory_impl.h160 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in uninitialized_fill() typedef
168 std::is_arithmetic<_ValueType>(), in uninitialized_fill()
188 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in uninitialized_fill_n() typedef
196 std::is_arithmetic<_ValueType>(), in uninitialized_fill_n()
218 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in destroy() typedef
236 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in destroy_n() typedef
257 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in uninitialized_default_construct() typedef
262 __pstl::__internal::__invoke_if_not(std::is_trivial<_ValueType>(), in uninitialized_default_construct()
275 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in uninitialized_default_construct_n() typedef
304 std::is_trivial<_ValueType>(), in uninitialized_value_construct()
[all …]
H A Dmemory_impl.h34 using _ValueType = typename std::iterator_traits<_OutputIterator>::value_type; in __brick_uninitialized_move() local
37 ::new (std::addressof(*__result)) _ValueType(std::move(*__first)); in __brick_uninitialized_move()
60 using _ValueType = typename std::iterator_traits<_Iterator>::value_type; in __brick_destroy() local
63 __first->~_ValueType(); in __brick_destroy()
70 using _ValueType = typename std::iterator_traits<_RandomAccessIterator>::value_type; in __brick_destroy() local
73 …q_backend::__simd_walk_1(__first, __last - __first, [](_ReferenceType __x) { __x.~_ValueType(); }); in __brick_destroy()
85 using _ValueType = typename std::iterator_traits<_OutputIterator>::value_type; in __brick_uninitialized_copy() local
88 ::new (std::addressof(*__result)) _ValueType(*__first); in __brick_uninitialized_copy()
H A Dglue_numeric_impl.h50 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in reduce() typedef
51 return transform_reduce(std::forward<_ExecutionPolicy>(__exec), __first, __last, _ValueType{}, in reduce()
52 std::plus<_ValueType>(), __pstl::__internal::__no_op()); in reduce()
223 typedef typename iterator_traits<_ForwardIterator1>::value_type _ValueType; in adjacent_difference() typedef
225 std::minus<_ValueType>()); in adjacent_difference()
H A Dunseq_backend_simd.h623 typedef typename std::iterator_traits<_ForwardIterator>::value_type _ValueType; in __simd_min_element() typedef
626 _ValueType __min_val; in __simd_min_element()
631 _ComplexType(const _ValueType& val, const _Compare* comp) in __simd_min_element()
660 const _ValueType __min_val = __init.__min_val; in __simd_min_element()
661 const _ValueType __current = __first[__i]; in __simd_min_element()
681 typedef typename std::iterator_traits<_ForwardIterator>::value_type _ValueType; in __simd_minmax_element() typedef
685 _ValueType __min_val; in __simd_minmax_element()
686 _ValueType __max_val; in __simd_minmax_element()
692 _ComplexType(const _ValueType& min_val, const _ValueType& max_val, const _Compare* comp) in __simd_minmax_element()
H A Dparallel_backend_utils.h34 typedef typename std::iterator_traits<_RandomAccessIterator>::value_type _ValueType; in operator() typedef
38 (*__ze).~_ValueType(); in operator()
H A Dparallel_backend_tbb.h720 typedef typename std::iterator_traits<_RandomAccessIterator1>::value_type _ValueType; typedef
761 ::new (std::addressof(*__z)) _ValueType(std::move(*__x)); in operator()
1165 typedef typename std::iterator_traits<_RandomAccessIterator>::value_type _ValueType;
1174 __buffer<_ValueType> __buf(__n);
1175 … __root_task<__stable_sort_func<_RandomAccessIterator, _ValueType*, _Compare, _LeafSort>> __root{
H A Dglue_algorithm_impl.h156 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in adjacent_find() typedef
158 … __last, std::equal_to<_ValueType>(), /*first_semantic*/ false); in adjacent_find()
182 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in count() typedef
184 … [&__value](const _ValueType& __x) { return __value == __x; }); in count()
1056 typedef typename iterator_traits<_ForwardIterator>::value_type _ValueType; in minmax_element() typedef
1057 …::minmax_element(std::forward<_ExecutionPolicy>(__exec), __first, __last, std::less<_ValueType>()); in minmax_element()
H A Dalgorithm_impl.h577 typedef typename std::iterator_traits<_RandomAccessIterator2>::value_type _ValueType; in __find_subrange() typedef
595 …__first, __last, __equal_value_by_pred<_ValueType, _BinaryPredicate>(*__s_first, __pred), __is_vec… in __find_subrange()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DThreadSafeDenseMap.h20 template <typename _KeyType, typename _ValueType,
24 typedef llvm::DenseMap<_KeyType, _ValueType> LLVMMapType;
29 void Insert(_KeyType k, _ValueType v) { in Insert()
39 _ValueType Lookup(_KeyType k) { in Lookup()
44 bool Lookup(_KeyType k, _ValueType &v) { in Lookup()
/llvm-project-15.0.7/libcxx/include/experimental/
H A Dmemory_resource155 template <class _ValueType>
159 typedef _ValueType value_type;
185 _ValueType* allocate(size_t __n) {
188 return static_cast<_ValueType*>(
189 __res_->allocate(__n * sizeof(_ValueType), _LIBCPP_ALIGNOF(_ValueType))
194 void deallocate(_ValueType * __p, size_t __n) _NOEXCEPT {
197 __res_->deallocate(__p, __n * sizeof(_ValueType), _LIBCPP_ALIGNOF(_ValueType));
350 using _ValueType = typename _Alloc::value_type;
395 __alloc_.deallocate((_ValueType*)__p, __s);
/llvm-project-15.0.7/pstl/include/pstl/internal/omp/
H A Dparallel_stable_sort.h81 using _ValueType = typename std::iterator_traits<_RandomAccessIterator>::value_type; in __parallel_stable_sort_body() local
82 using _VecType = typename std::vector<_ValueType>; in __parallel_stable_sort_body()
/llvm-project-15.0.7/lldb/docs/
H A Dpython_api_enums.rst491 .. _ValueType: