Home
last modified time | relevance | path

Searched refs:_Size (Results 1 – 25 of 38) sorted by relevance

12

/openbsd/gnu/llvm/libcxx/include/__functional/
H A Dhash.h39 _Size
62 _Size
71 _Size __k = std::__loadword<_Size>(__data);
108 static _Size __rotate(_Size __val, int __shift) {
116 static _Size __shift_mix(_Size __val) {
120 static _Size __hash_len_16(_Size __u, _Size __v)
175 _Size __w, _Size __x, _Size __y, _Size __z, _Size __a, _Size __b)
189 const char* __s, _Size __a, _Size __b)
204 _Size __z = std::__loadword<_Size>(__s + 24);
205 _Size __a = std::__loadword<_Size>(__s) +
[all …]
/openbsd/gnu/llvm/libcxx/include/
H A Dbitset676 template <size_t _Size> struct hash<bitset<_Size> >;
680 : private __bitset<_Size == 0 ? 0 : (_Size - 1) / (sizeof(size_t) * CHAR_BIT) + 1, _Size>
837 bitset<_Size>&
847 bitset<_Size>&
857 bitset<_Size>&
933 bitset<_Size>
1085 bitset<_Size>
1096 bitset<_Size>
1106 bitset<_Size>
1116 bitset<_Size>
[all …]
H A Darray149 template <class _Tp, size_t _Size>
166 _Tp __elems_[_Size];
229 if (__n >= _Size)
236 if (__n >= _Size)
390 operator==(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
398 operator!=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
406 operator<(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
415 operator>(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
423 operator<=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
431 operator>=(const array<_Tp, _Size>& __x, const array<_Tp, _Size>& __y)
[all …]
/openbsd/gnu/llvm/libcxx/include/__type_traits/
H A Dtype_list.h28 template <class _TypeList, size_t _Size, bool = _Size <= sizeof(typename _TypeList::_Head)> struct …
30 template <class _Hp, class _Tp, size_t _Size>
31 struct __find_first<__type_list<_Hp, _Tp>, _Size, true>
36 template <class _Hp, class _Tp, size_t _Size>
37 struct __find_first<__type_list<_Hp, _Tp>, _Size, false>
39 typedef _LIBCPP_NODEBUG typename __find_first<_Tp, _Size>::type type;
/openbsd/gnu/llvm/libcxx/include/__concepts/
H A Dswappable.h52 template<class _Tp, class _Up, size_t _Size>
54 !__unqualified_swappable_with<_Tp(&)[_Size], _Up(&)[_Size]> &&
56 requires(_Tp(& __t)[_Size], _Up(& __u)[_Size], const __fn& __swap) {
78 template<class _Tp, class _Up, size_t _Size>
79 requires __swappable_arrays<_Tp, _Up, _Size>
80 constexpr void operator()(_Tp(& __t)[_Size], _Up(& __u)[_Size]) const in operator()
84 for (size_t __i = 0; __i < _Size; ++__i) { in operator()
/openbsd/gnu/llvm/libcxx/include/__fwd/
H A Dget.h73 template <size_t _Ip, class _Tp, size_t _Size>
76 get(array<_Tp, _Size>&) _NOEXCEPT;
78 template <size_t _Ip, class _Tp, size_t _Size>
81 get(const array<_Tp, _Size>&) _NOEXCEPT;
84 template <size_t _Ip, class _Tp, size_t _Size>
87 get(array<_Tp, _Size>&&) _NOEXCEPT;
89 template <size_t _Ip, class _Tp, size_t _Size>
92 get(const array<_Tp, _Size>&&) _NOEXCEPT;
/openbsd/gnu/llvm/libcxx/include/__memory/
H A Duninitialized_algorithms.h90 __uninitialized_copy_n(_InputIterator __ifirst, _Size __n, in __uninitialized_copy_n()
108 template <class _InputIterator, class _Size, class _ForwardIterator>
152 template <class _ValueType, class _ForwardIterator, class _Size, class _Tp>
175 template <class _ForwardIterator, class _Size, class _Tp>
216 template <class _ValueType, class _ForwardIterator, class _Size>
235 template <class _ForwardIterator, class _Size>
273 template <class _ValueType, class _ForwardIterator, class _Size>
292 template <class _ForwardIterator, class _Size>
338 __uninitialized_move_n(_InputIterator __ifirst, _Size __n, in __uninitialized_move_n()
356 template <class _InputIterator, class _Size, class _ForwardIterator>
[all …]
H A Dallocation_guard.h46 using _Size = typename allocator_traits<_Alloc>::size_type; member
50 explicit __allocation_guard(_AllocT __alloc, _Size __n) in __allocation_guard()
77 _Size __n_;
/openbsd/gnu/llvm/libcxx/include/__format/
H A Dformatter_string.h108 template <__fmt_char_type _CharT, size_t _Size>
109 struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<_CharT[_Size], _CharT>
113 …_LIBCPP_HIDE_FROM_ABI auto format(_CharT __str[_Size], auto& __ctx) const -> decltype(__ctx.out())…
114 return _Base::format(basic_string_view<_CharT>(__str, _Size), __ctx);
119 template <__fmt_char_type _CharT, size_t _Size>
120 struct _LIBCPP_TEMPLATE_VIS _LIBCPP_AVAILABILITY_FORMAT formatter<const _CharT[_Size], _CharT>
124 …_LIBCPP_HIDE_FROM_ABI auto format(const _CharT __str[_Size], auto& __ctx) const -> decltype(__ctx.…
125 return _Base::format(basic_string_view<_CharT>(__str, _Size), __ctx);
H A Dbuffer.h403 using _Size = iter_difference_t<_OutIt>;
410 if (_Size(__size_) <= __max_size_)
411 __writer_.__flush(__ptr, _VSTD::min(_Size(__n), __max_size_ - __size_));
420 _Size __max_size_;
421 _Size __size_{0};
433 using _Size = iter_difference_t<_OutIt>;
462 _Size __s = _VSTD::min(_Size(__n), __max_size_ - __size_);
475 _Size __max_size_;
476 _Size __size_{0};
485 using _Size = iter_difference_t<_OutIt>;
[all …]
/openbsd/gnu/llvm/libcxx/include/__algorithm/
H A Dfill_n.h25 template <class _OutputIterator, class _Size, class _Tp>
28 __fill_n(_OutputIterator __first, _Size __n, const _Tp& __value) in __fill_n()
35 template <class _OutputIterator, class _Size, class _Tp>
38 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value) in fill_n()
H A Dcopy_n.h24 template<class _InputIterator, class _Size, class _OutputIterator>
32 copy_n(_InputIterator __first, _Size __orig_n, _OutputIterator __result) in copy_n()
50 template<class _InputIterator, class _Size, class _OutputIterator>
57 copy_n(_InputIterator __first, _Size __orig_n, _OutputIterator __result) in copy_n()
H A Dgenerate_n.h22 template <class _OutputIterator, class _Size, class _Generator>
25 generate_n(_OutputIterator __first, _Size __orig_n, _Generator __gen) in generate_n()
H A Dfor_each_n.h25 template <class _InputIterator, class _Size, class _Function>
27_Size __orig_n, in for_each_n()
H A Dsearch_n.h161 template <class _ForwardIterator, class _Size, class _Tp, class _BinaryPredicate>
164 _Size __count, in search_n()
173 template <class _ForwardIterator, class _Size, class _Tp>
175 _ForwardIterator search_n(_ForwardIterator __first, _ForwardIterator __last, _Size __count, const _… in search_n()
/openbsd/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_uninitialized.h180 template<typename _ForwardIterator, typename _Size, typename _Tp>
182 __uninitialized_fill_n_aux(_ForwardIterator __first, _Size __n, in __uninitialized_fill_n_aux()
186 template<typename _ForwardIterator, typename _Size, typename _Tp>
188 __uninitialized_fill_n_aux(_ForwardIterator __first, _Size __n, in __uninitialized_fill_n_aux()
213 template<typename _ForwardIterator, typename _Size, typename _Tp>
215 uninitialized_fill_n(_ForwardIterator __first, _Size __n, const _Tp& __x) in uninitialized_fill_n()
280 template<typename _ForwardIterator, typename _Size, typename _Tp,
283 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n, in __uninitialized_fill_n_a()
300 template<typename _ForwardIterator, typename _Size, typename _Tp,
303 __uninitialized_fill_n_a(_ForwardIterator __first, _Size __n, in __uninitialized_fill_n_a()
H A Dstl_algobase.h622 template<typename _OutputIterator, typename _Size, typename _Tp>
624 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
635 template<typename _OutputIterator, typename _Size, typename _Tp>
637 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
657 template<typename _OutputIterator, typename _Size, typename _Tp>
659 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
668 template<typename _Size>
676 template<typename _Size>
678 fill_n(signed char* __first, _Size __n, const signed char& __c)
684 template<typename _Size>
[all …]
/openbsd/gnu/gcc/libstdc++-v3/include/ext/
H A Dmemory76 template<typename _InputIter, typename _Size, typename _ForwardIter>
78 __uninitialized_copy_n(_InputIter __first, _Size __count,
97 __uninitialized_copy_n(_RandomAccessIter __first, _Size __count,
106 template<typename _InputIter, typename _Size, typename _ForwardIter>
108 __uninitialized_copy_n(_InputIter __first, _Size __count,
123 template<typename _InputIter, typename _Size, typename _ForwardIter>
125 uninitialized_copy_n(_InputIter __first, _Size __count,
133 template<typename _InputIter, typename _Size, typename _ForwardIter,
136 __uninitialized_copy_n_a(_InputIter __first, _Size __count,
154 template<typename _InputIter, typename _Size, typename _ForwardIter,
[all …]
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstl_uninitialized.h175 template<typename _ForwardIter, typename _Size, typename _Tp>
177 __uninitialized_fill_n_aux(_ForwardIter __first, _Size __n, in __uninitialized_fill_n_aux()
183 template<typename _ForwardIter, typename _Size, typename _Tp>
185 __uninitialized_fill_n_aux(_ForwardIter __first, _Size __n, in __uninitialized_fill_n_aux()
210 template<typename _ForwardIter, typename _Size, typename _Tp>
212 uninitialized_fill_n(_ForwardIter __first, _Size __n, const _Tp& __x) in uninitialized_fill_n()
H A Dstl_algobase.h531 template<typename _OutputIter, typename _Size, typename _Tp>
533 fill_n(_OutputIter __first, _Size __n, const _Tp& __value)
566 template<typename _Size>
568 fill_n(unsigned char* __first, _Size __n, const unsigned char& __c)
574 template<typename _Size>
576 fill_n(char* __first, _Size __n, const signed char& __c)
582 template<typename _Size>
584 fill_n(char* __first, _Size __n, const char& __c)
/openbsd/gnu/lib/libstdc++/libstdc++/include/ext/
H A Dmemory77 template<typename _InputIter, typename _Size, typename _ForwardIter>
79 __uninitialized_copy_n(_InputIter __first, _Size __count,
96 template<typename _RandomAccessIter, typename _Size, typename _ForwardIter>
98 __uninitialized_copy_n(_RandomAccessIter __first, _Size __count,
108 template<typename _InputIter, typename _Size, typename _ForwardIter>
110 __uninitialized_copy_n(_InputIter __first, _Size __count,
126 template<typename _InputIter, typename _Size, typename _ForwardIter>
128 uninitialized_copy_n(_InputIter __first, _Size __count,
H A Dalgorithm80 template<typename _InputIter, typename _Size, typename _OutputIter>
82 __copy_n(_InputIter __first, _Size __count,
94 template<typename _RAIter, typename _Size, typename _OutputIter>
96 __copy_n(_RAIter __first, _Size __count,
119 template<typename _InputIter, typename _Size, typename _OutputIter>
121 copy_n(_InputIter __first, _Size __count, _OutputIter __result)
217 template<typename _InputIter, typename _Tp, typename _Size>
221 _Size& __n)
233 template<typename _InputIter, typename _Predicate, typename _Size>
237 _Size& __n)
/openbsd/gnu/llvm/libcxx/include/__tuple_dir/
H A Dtuple_like.h38 template <class _Tp, size_t _Size>
39 struct __tuple_like_impl<array<_Tp, _Size> > : true_type {};
H A Dtuple_like_ext.h38 template <class _Tp, size_t _Size> struct __tuple_like_ext<array<_Tp, _Size> > : true_type {};
/openbsd/gnu/llvm/libcxx/include/__compare/
H A Dcommon_comparison_category.h47 template <size_t _Size>
50 __compute_comp_type(const _ClassifyCompCategory (&__types)[_Size]) { in __compute_comp_type() argument

12