Home
last modified time | relevance | path

Searched refs:value_type (Results 1 – 25 of 364) sorted by relevance

12345678910>>...15

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DEndian.h48 template <typename value_type>
49 inline value_type byte_swap(value_type value, endianness endian) { in byte_swap()
57 inline value_type byte_swap(value_type value) { in byte_swap()
64 value_type ret; in read()
69 sizeof(value_type)); in read()
73 template<typename value_type,
84 value_type ret = read<value_type, alignment>(memory, endian); in readNext()
104 template<typename value_type,
111 template <typename value_type>
123 value_type val[2]; in readAtBitAlignment()
[all …]
H A DEndianStream.h27 template <typename value_type>
28 inline void write(raw_ostream &os, value_type value, endianness endian) { in write()
29 value = byte_swap<value_type>(value, endian); in write()
30 os.write((const char *)&value, sizeof(value_type)); in write()
44 template <typename value_type>
45 inline void write(raw_ostream &os, ArrayRef<value_type> vals, in write()
47 for (value_type v : vals) in write()
56 template <typename value_type> void write(ArrayRef<value_type> Val) { in write()
59 template <typename value_type> void write(value_type Val) { in write()
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dvalarray103 valarray apply(value_type f(value_type)) const;
104 valarray apply(value_type f(const value_type&)) const;
105 void resize(size_t n, value_type x = value_type());
673 typedef typename _RmExpr::value_type value_type;
713 typedef typename _RmExpr::value_type value_type;
756 typedef typename _RmExpr::value_type value_type;
2749 __val_expr<_UnaryOp<__apply_expr<value_type, value_type(*)(value_type)>, _ValExpr> >
2750 apply(value_type __f(value_type)) const
2752 typedef __apply_expr<value_type, value_type(*)(value_type)> _Op;
2759 apply(value_type __f(const value_type&)) const
[all …]
H A Dstring193 void push_back(value_type c);
712 static_assert(( is_same<typename allocator_type::value_type, value_type>::value),
713 "Allocator::value_type must be same type as value_type");
744 value_type __data_[__min_cap];
746 : __padding<value_type>
777 value_type __lx;
1077 void push_back(value_type __c);
2806 value_type* __p;
2868 value_type* __p;
2947 value_type* __p;
[all …]
H A Doptional85 using value_type = T;
213 typedef _Tp value_type;
219 value_type __val_;
255 typedef _Tp value_type;
261 value_type __val_;
290 using value_type = _Tp;
366 using value_type = _Tp;
908 const value_type&
917 value_type&
926 value_type&&
[all …]
H A D__string69 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(value_type const*, size_type)) \
81 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(size_type, value_type)) \
86 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::push_back(value_type)) \
93 _Func(_LIBCPP_FUNC_VIS int basic_string<_CharType>::compare(value_type const*) const) \
104 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::resize(size_type, value_type)) \
131 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::__init(size_type, value_type)) \
138 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::push_back(value_type)) \
145 _Func(_LIBCPP_FUNC_VIS int basic_string<_CharType>::compare(value_type const*) const) \
154 _Func(_LIBCPP_FUNC_VIS void basic_string<_CharType>::resize(size_type, value_type)) \
1125 typedef typename iterator_traits<_Ptr>::value_type value_type;
[all …]
H A Dforward_list23 typedef T value_type;
90 void push_front(const value_type& v);
91 void push_front(value_type&& v);
279 typedef _Tp value_type;
281 value_type __value_;
454 typedef _Tp value_type;
640 typedef _Tp value_type;
643 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
644 "Allocator::value_type must be same type as value_type");
778 void push_front(value_type&& __v);
[all …]
H A Dqueue24 typedef typename container_type::value_type value_type;
63 void push(const value_type& v);
64 void push(value_type&& v);
105 typedef typename container_type::value_type value_type;
148 void push(const value_type& v);
149 void push(value_type&& v);
213 typedef typename container_type::value_type value_type;
296 void push(const value_type& __v) {c.push_back(__v);}
420 typedef typename container_type::value_type value_type;
518 void push(const value_type& __v);
[all …]
H A Dmap56 bool operator()(const value_type& x, const value_type& y) const;
301 bool operator()(const value_type& x, const value_type& y) const;
684 value_type __cc;
766 value_type __cc;
928 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
929 "Allocator::value_type must be same type as value_type");
934 : public binary_function<value_type, value_type, bool>
950 bool operator()(const value_type& __x, const value_type& __y) const
1712 "Allocator::value_type must be same type as value_type");
1717 : public binary_function<value_type, value_type, bool>
[all …]
H A Dvector95 value_type* data() noexcept;
98 void push_back(const value_type& x);
99 void push_back(value_type&& x);
219 void push_back(const value_type& x);
515 static_assert((is_same<typename allocator_type::value_type, value_type>::value),
516 "Allocator::value_type must be same type as value_type");
619 value_type,
629 value_type,
718 value_type* data() _NOEXCEPT
767 value_type,
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/__algorithm/
H A Dstable_sort.h37 typedef typename iterator_traits<_InputIterator1>::value_type value_type; in __merge_move_construct() typedef
59 __d.template __incr<value_type>(); in __merge_move_construct()
65 __d.template __incr<value_type>(); in __merge_move_construct()
112 typedef typename iterator_traits<_RandomAccessIterator>::value_type value_type; in __stable_sort_move() typedef
126 __d.template __incr<value_type>(); in __stable_sort_move()
133 __d.template __incr<value_type>(); in __stable_sort_move()
164 typedef typename iterator_traits<_RandomAccessIterator>::value_type value_type; in __stable_sort() typedef
188 __d.__set(__l2, (value_type*)nullptr); in __stable_sort()
190 __d.__set(__len, (value_type*)nullptr); in __stable_sort()
209 typedef typename iterator_traits<_RandomAccessIterator>::value_type value_type; in stable_sort() typedef
[all …]
H A Dstable_partition.h48 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in __stable_partition() typedef
53 value_type* __t = __p.first; in __stable_partition()
55 __d.template __incr<value_type>(); in __stable_partition()
68 __d.template __incr<value_type>(); in __stable_partition()
131 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in __stable_partition() typedef
133 pair<value_type*, ptrdiff_t> __p(0, 0); in __stable_partition()
172 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in __stable_partition() typedef
177 value_type* __t = __p.first; in __stable_partition()
179 __d.template __incr<value_type>(); in __stable_partition()
258 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in __stable_partition() typedef
[all …]
H A Drotate.h35 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in __rotate_left() typedef
36 value_type __tmp = _VSTD::move(*__first); in __rotate_left()
46 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in __rotate_right() typedef
48 value_type __tmp = _VSTD::move(*__lm1); in __rotate_right()
108 typedef typename iterator_traits<_RandomAccessIterator>::value_type value_type; in __rotate_gcd() typedef
120 value_type __t(_VSTD::move(*--__p)); in __rotate_gcd()
144 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in __rotate() typedef
145 if (is_trivially_move_assignable<value_type>::value) in __rotate()
159 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in __rotate() typedef
160 if (is_trivially_move_assignable<value_type>::value) in __rotate()
[all …]
H A Dinplace_merge.h86 typename iterator_traits<_BidirectionalIterator>::value_type* __buff) in __buffered_inplace_merge()
88 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in __buffered_inplace_merge() typedef
90 unique_ptr<value_type, __destruct_n&> __h2(__buff, __d); in __buffered_inplace_merge()
93 value_type* __p = __buff; in __buffered_inplace_merge()
95 ::new ((void*)__p) value_type(_VSTD::move(*__i)); in __buffered_inplace_merge()
100 value_type* __p = __buff; in __buffered_inplace_merge()
102 ::new ((void*)__p) value_type(_VSTD::move(*__i)); in __buffered_inplace_merge()
104 typedef reverse_iterator<value_type*> _Rv; in __buffered_inplace_merge()
206 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in inplace_merge() typedef
211 pair<value_type*, ptrdiff_t> __buf = _VSTD::get_temporary_buffer<value_type>(__buf_size); in inplace_merge()
[all …]
H A Dsort.h146 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in __insertion_sort() typedef
153 value_type __t(_VSTD::move(*__j)); in __insertion_sort()
165 typedef typename iterator_traits<_RandomAccessIterator>::value_type value_type; in __insertion_sort_3() typedef
172 value_type __t(_VSTD::move(*__i)); in __insertion_sort_3()
209 typedef typename iterator_traits<_RandomAccessIterator>::value_type value_type; in __insertion_sort_incomplete() typedef
240 typedef typename iterator_traits<_BidirectionalIterator>::value_type value_type; in __insertion_sort_move() typedef
245 value_type* __last2 = __first2; in __insertion_sort_move()
247 __d.template __incr<value_type>(); in __insertion_sort_move()
250 value_type* __j2 = __last2; in __insertion_sort_move()
251 value_type* __i2 = __j2; in __insertion_sort_move()
[all …]
H A Dpush_heap.h32 typedef typename iterator_traits<_RandomAccessIterator>::value_type value_type; in __sift_up() typedef
39 value_type __t(_VSTD::move(*__last)); in __sift_up()
68 …:push_heap(__first, __last, __less<typename iterator_traits<_RandomAccessIterator>::value_type>()); in push_heap()
/freebsd-13.1/contrib/kyua/utils/config/
H A Dnodes.hpp123 typedef ValueType value_type; typedef in utils::config::typed_leaf_node
132 const value_type& value(void) const;
135 value_type& value(void);
138 void set(const value_type&);
142 optional< value_type > _value;
145 virtual void validate(const value_type&) const;
205 typedef std::set< ValueType > value_type; typedef in utils::config::base_set_node
219 const value_type& value(void) const;
226 value_type& value(void);
229 void set(const value_type&);
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/__memory/
H A Duninitialized_algorithms.h32 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in uninitialized_copy() typedef
39 ::new ((void*)_VSTD::addressof(*__r)) value_type(*__f); in uninitialized_copy()
45 __s->~value_type(); in uninitialized_copy()
56 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in uninitialized_copy_n() typedef
63 ::new ((void*)_VSTD::addressof(*__r)) value_type(*__f); in uninitialized_copy_n()
69 __s->~value_type(); in uninitialized_copy_n()
80 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in uninitialized_fill() typedef
87 ::new ((void*)_VSTD::addressof(*__f)) value_type(__x); in uninitialized_fill()
93 __s->~value_type(); in uninitialized_fill()
103 typedef typename iterator_traits<_ForwardIterator>::value_type value_type; in uninitialized_fill_n() typedef
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/
H A Dfunctional150 typedef _Value value_type;
162 void insert(const key_type &__key, value_type __val)
168 value_type operator [](const key_type & __key) const
180 typedef _Value value_type;
195 void insert(key_type __key, value_type __val)
201 value_type operator [](key_type __key) const
214 typedef typename std::iterator_traits<_RandomAccessIterator1>::value_type value_type;
217 sizeof(value_type) == 1 &&
325 vector<value_type> __scratch(__count);
365 typedef typename std::iterator_traits<_RandomAccessIterator1>::value_type value_type;
[all …]
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Serialization/
H A DContinuousRangeMap.h39 using value_type = std::pair<Int, V>;
40 using reference = value_type &;
41 using const_reference = const value_type &;
42 using pointer = value_type *;
43 using const_pointer = const value_type *;
46 using Representation = SmallVector<value_type, InitialCapacity>;
66 void insert(const value_type &Val) { in insert()
75 void insertOrReplace(const value_type &Val) { in insertOrReplace()
134 void insert(const value_type &Val) { in insert()
/freebsd-13.1/contrib/llvm-project/libcxx/include/__iterator/
H A Dreadable_traits.h33 struct __cond_value_type<_Tp> { using value_type = remove_cv_t<_Tp>; };
36 concept __has_member_value_type = requires { typename _Tp::value_type; };
46 using value_type = remove_cv_t<remove_extent_t<_Ip>>;
57 : __cond_value_type<typename _Tp::value_type> {};
70 remove_cv_t<typename _Tp::value_type>>
72 : __cond_value_type<typename _Tp::value_type> {};
83 iterator_traits<remove_cvref_t<_Ip> > >::value_type;
H A Diterator_traits.h165 typename indirectly_readable_traits<_Ip>::value_type; in requires()
179 typename indirectly_readable_traits<_Ip>::value_type> &&
220 typename _Ip::value_type;
334 using value_type = typename _Ip::value_type;
346 using value_type = typename indirectly_readable_traits<_Ip>::value_type;
357 using value_type = void;
378 typedef typename _Iter::value_type value_type;
414 typedef typename remove_cv<_Tp>::type value_type;
482 using __iter_value_type = typename iterator_traits<_InputIterator>::value_type;
492 add_const_t<typename iterator_traits<_InputIterator>::value_type::first_type>,
[all …]
/freebsd-13.1/contrib/jemalloc/include/jemalloc/internal/
H A Demitter.h118 emitter_type_t value_type, const void *value) { in emitter_print_value() argument
136 switch (value_type) { in emitter_print_value()
256 value_type, value); in emitter_json_value()
264 emitter_type_t value_type, const void *value) { in emitter_json_kv() argument
266 emitter_json_value(emitter, value_type, value); in emitter_json_kv()
345 emitter_type_t value_type, const void *value, in emitter_table_kv_note() argument
352 value_type, value); in emitter_table_kv_note()
366 emitter_type_t value_type, const void *value) { in emitter_table_kv() argument
420 emitter_type_t value_type, const void *value, in emitter_kv_note() argument
425 emitter_json_value(emitter, value_type, value); in emitter_kv_note()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DImmutableSet.h45 using value_type = typename ImutInfo::value_type; variable
233 value_type value;
852 using value_type = const T;
863 using value_type = const T;
902 using value_type = const T*;
922 using value_type = typename ImutProfileInfo<T>::value_type;
924 using key_type = value_type;
948 using value_type = typename ImutProfileInfo<T*>::value_type;
950 using key_type = value_type;
972 using value_type = typename ValInfo::value_type;
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DDebugUtils.cpp81 typename Pred = PrintAll<typename Sequence::value_type>>
125 bool operator()(const orc::SymbolFlagsMap::value_type &KV) { in operator ()()
131 bool operator()(const orc::SymbolMap::value_type &KV) { in operator ()()
180 raw_ostream &operator<<(raw_ostream &OS, const SymbolFlagsMap::value_type &KV) { in operator <<()
184 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap::value_type &KV) { in operator <<()
199 const SymbolDependenceMap::value_type &KV) { in operator <<()
205 PrintAll<SymbolDependenceMap::value_type>()); in operator <<()
247 const SymbolLookupSet::value_type &KV) { in operator <<()
253 PrintAll<SymbolLookupSet::value_type>()); in operator <<()

12345678910>>...15