Home
last modified time | relevance | path

Searched defs:__first (Results 1 – 25 of 140) sorted by relevance

123456

/freebsd-src/contrib/llvm-project/libcxx/include/__charconv/
H A Dto_chars_base_10.h32 __append1(char * __first,uint32_t __value) __append1() argument
37 __append2(char * __first,uint32_t __value) __append2() argument
41 __append3(char * __first,uint32_t __value) __append3() argument
45 __append4(char * __first,uint32_t __value) __append4() argument
49 __append5(char * __first,uint32_t __value) __append5() argument
53 __append6(char * __first,uint32_t __value) __append6() argument
57 __append7(char * __first,uint32_t __value) __append7() argument
61 __append8(char * __first,uint32_t __value) __append8() argument
65 __append9(char * __first,uint32_t __value) __append9() argument
70 __append10(char * __first,_Tp __value) __append10() argument
76 __base_10_u32(char * __first,uint32_t __value) __base_10_u32() argument
[all...]
H A Dfrom_chars_integral.h41 __sign_combinator(_It __first,_It __last,_Tp & __value,_Fn __f,_Ts...__args) __sign_combinator() argument
98 __subject_seq_combinator(_It __first,_It __last,_Tp & __value,_Fn __f,_Ts...__args) __subject_seq_combinator() argument
129 __from_chars_atoi(const char * __first,const char * __last,_Tp & __value) __from_chars_atoi() argument
150 __from_chars_atoi(const char * __first,const char * __last,_Tp & __value) __from_chars_atoi() argument
175 __from_chars_integral(const char * __first,const char * __last,_Tp & __value,int __base) __from_chars_integral() argument
216 __from_chars_integral(const char * __first,const char * __last,_Tp & __value,int __base) __from_chars_integral() argument
223 from_chars(const char * __first,const char * __last,_Tp & __value) from_chars() argument
229 from_chars(const char * __first,const char * __last,_Tp & __value,int __base) from_chars() argument
[all...]
/freebsd-src/contrib/llvm-project/libcxx/src/
H A Dcharconv.cpp36 to_chars_result to_chars(char* __first, char* __last, float __value) { in to_chars()
40 to_chars_result to_chars(char* __first, char* __last, double __value) { in to_chars()
44 to_chars_result to_chars(char* __first, char* __last, long double __value) { in to_chars()
49 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt) { in to_chars()
53 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt) { in to_chars()
57 to_chars_result to_chars(char* __first, char* __last, long double __value, chars_format __fmt) { in to_chars()
62 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt, int __prec… in to_chars()
67 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt, int __pre… in to_chars()
72 to_chars_result to_chars(char* __first, char* __last, long double __value, chars_format __fmt, int … in to_chars()
/freebsd-src/contrib/llvm-project/libcxx/include/__algorithm/
H A Dpstl_replace.h
H A Dpstl_any_all_none_of.h
H A Dpstl_find.h
H A Drotate.h33 __rotate_left(_ForwardIterator __first, _ForwardIterator __last) { in __rotate_left() argument
45 __rotate_right(_BidirectionalIterator __first, _BidirectionalIterator __last) { in __rotate_right() argument
58 __rotate_forward(_ForwardIterator __first, _ForwardIterator __middle, _ForwardIterator __last) { in __rotate_forward() argument
97 __rotate_gcd(_RandomAccessIterator __first,_RandomAccessIterator __middle,_RandomAccessIterator __last) __rotate_gcd() argument
129 __rotate_impl(_ForwardIterator __first,_ForwardIterator __middle,_ForwardIterator __last,std::forward_iterator_tag) __rotate_impl() argument
140 __rotate_impl(_BidirectionalIterator __first,_BidirectionalIterator __middle,_BidirectionalIterator __last,bidirectional_iterator_tag) __rotate_impl() argument
156 __rotate_impl(_RandomAccessIterator __first,_RandomAccessIterator __middle,_RandomAccessIterator __last,random_access_iterator_tag) __rotate_impl() argument
173 __rotate(_Iterator __first,_Iterator __middle,_Sentinel __last) __rotate() argument
190 rotate(_ForwardIterator __first,_ForwardIterator __middle,_ForwardIterator __last) rotate() argument
[all...]
H A Dfind.h46 __find(_Iter __first, _Sent __last, const _Tp& __value, _Proj& __proj) { in __find_impl() argument
61 if (auto __ret = std::__constexpr_memchr(__first, __value, __last - __first)) in __find_impl() argument
75 __find_impl(_Tp * __first,_Tp * __last,const _Up & __value,_Proj &) __find_impl() argument
92 __find_impl(_Tp * __first,_Tp * __last,const _Up & __value,_Proj & __proj) __find_impl() argument
101 __find_bool(__bit_iterator<_Cp,_IsConst> __first,typename _Cp::size_type __n) __find_bool() argument
137 __find_impl(__bit_iterator<_Cp,_IsConst> __first,__bit_iterator<_Cp,_IsConst> __last,const _Tp & __value,_Proj &) __find_impl() argument
153 __find_impl(_SegmentedIterator __first,_SegmentedIterator __last,const _Tp & __value,_Proj & __proj) __find_impl() argument
173 find(_InputIterator __first,_InputIterator __last,const _Tp & __value) find() argument
[all...]
H A Dreverse.h29 __reverse_impl(_BidirectionalIterator __first, _BidirectionalIterator __last, bidirectional_iterato… in __reverse_impl()
40 __reverse_impl(_RandomAccessIterator __first, _RandomAccessIterator __last, random_access_iterator_… in __reverse_impl()
47 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __reverse(_BidirectionalIterator __first, … in __reverse()
54 reverse(_BidirectionalIterator __first, _BidirectionalIterator __last) { in reverse()
H A Dmin_element.h32 __min_element(_Iter __first, _Sent __last, _Comp __comp, _Proj& __proj) { in __min_element() argument
45 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Iter __min_element(_Iter __first, _Sent __last, _Comp __comp) { in __min_element() argument
52 min_element(_ForwardIterator __first, _ForwardIterato argument
63 min_element(_ForwardIterator __first,_ForwardIterator __last) min_element() argument
[all...]
H A Dpush_heap.h32 __sift_up(_RandomAccessIterator __first, in __sift_up() argument
60 __push_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare& __comp) { in __push_heap() argument
67 push_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { in push_heap() argument
76 push_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { in push_heap() argument
[all...]
H A Dunique_copy.h41 __unique_copy(_InputIterator __first, in __unique_copy()
63 __unique_copy(_ForwardIterator __first, in __unique_copy()
85 __unique_copy(_InputIterator __first, in __unique_copy()
102 unique_copy(_InputIterator __first, _InputIterator __last, _OutputIterator __result, _BinaryPredica… in unique_copy()
119 unique_copy(_InputIterator __first, _InputIterator __last, _OutputIterator __result) { in unique_copy()
H A Dpstl_generate.h
H A Dpstl_fill.h
H A Dpartial_sort.h36 _RandomAccessIterator __first, _RandomAccessIterator __middle, _Sentinel __last, _Compare&& __comp) { in __partial_sort_impl() argument
58 __partial_sort(_RandomAccessIterator __first, _RandomAccessIterato argument
74 partial_sort(_RandomAccessIterator __first,_RandomAccessIterator __middle,_RandomAccessIterator __last,_Compare __comp) partial_sort() argument
83 partial_sort(_RandomAccessIterator __first,_RandomAccessIterator __middle,_RandomAccessIterator __last) partial_sort() argument
[all...]
H A Dpstl_copy.h
H A Dpstl_for_each.h
H A Dpstl_count.h
H A Dpartition.h29 __partition_impl(_ForwardIterator __first, _Sentinel __last, _Predicate __pred, forward_iterator_ta… in __partition_impl()
50 __partition_impl(_BidirectionalIterator __first, _Sentinel __sentinel, _Predicate __pred, bidirecti… in __partition_impl()
73 __partition(_ForwardIterator __first, _Sentinel __last, _Predicate&& __pred, _IterCategory __iter_c… in __partition()
80 partition(_ForwardIterator __first, _ForwardIterator __last, _Predicate __pred) { in partition()
H A Dadjacent_find.h30 __adjacent_find(_Iter __first, _Sent __last, _BinaryPredicate&& __pred) { in __adjacent_find() argument
44 adjacent_find(_ForwardIterator __first, _ForwardIterator __last, _BinaryPredicate __pred) { in adjacent_find() argument
50 adjacent_find(_ForwardIterator __first, _ForwardIterato argument
[all...]
H A Dmax_element.h25 __max_element(_ForwardIterator __first, _ForwardIterator __last, _Compare __comp) { in __max_element() argument
39 max_element(_ForwardIterator __first, _ForwardIterator __last, _Compare __comp) { in max_element() argument
45 max_element(_ForwardIterator __first, _ForwardIterator __last) { in max_element() argument
[all...]
H A Dunique.h33 __unique(_Iter __first, _Sent __last, _BinaryPredicate&& __pred) { in __unique() argument
50 unique(_ForwardIterator __first,_ForwardIterator __last,_BinaryPredicate __pred) unique() argument
56 unique(_ForwardIterator __first,_ForwardIterator __last) unique() argument
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/__memory/
H A Duninitialized_algorithms.h121 _ForwardIterator __idx = __first; in __uninitialized_fill() argument
149 _ForwardIterator __idx = __first; in __uninitialized_fill_n() argument
140 uninitialized_fill(_ForwardIterator __first,_ForwardIterator __last,const _Tp & __x) uninitialized_fill() argument
168 uninitialized_fill_n(_ForwardIterator __first,_Size __n,const _Tp & __x) uninitialized_fill_n() argument
179 __uninitialized_default_construct(_ForwardIterator __first,_Sentinel __last) __uninitialized_default_construct() argument
197 uninitialized_default_construct(_ForwardIterator __first,_ForwardIterator __last) uninitialized_default_construct() argument
205 __uninitialized_default_construct_n(_ForwardIterator __first,_Size __n) __uninitialized_default_construct_n() argument
223 uninitialized_default_construct_n(_ForwardIterator __first,_Size __n) uninitialized_default_construct_n() argument
232 __uninitialized_value_construct(_ForwardIterator __first,_Sentinel __last) __uninitialized_value_construct() argument
250 uninitialized_value_construct(_ForwardIterator __first,_ForwardIterator __last) uninitialized_value_construct() argument
258 __uninitialized_value_construct_n(_ForwardIterator __first,_Size __n) __uninitialized_value_construct_n() argument
276 uninitialized_value_construct_n(_ForwardIterator __first,_Size __n) uninitialized_value_construct_n() argument
370 __allocator_destroy_multidimensional(_Alloc & __alloc,_BidirIter __first,_BidirIter __last) __allocator_destroy_multidimensional() argument
517 __allocator_destroy(_Alloc & __alloc,_Iter __first,_Sent __last) __allocator_destroy() argument
526 _AllocatorDestroyRangeReverse(_Alloc & __alloc,_Iter & __first,_Iter & __last) _AllocatorDestroyRangeReverse() argument
[all...]
H A Dconstruct_at.h80 __destroy(_ForwardIterator __first, _ForwardIterator __last) { in __destroy() argument
88 __reverse_destroy(_BidirectionalIterator __first, _BidirectionalIterator __last) { in __reverse_destroy() argument
111 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 void destroy(_ForwardIterator __first, _ForwardIterator __last) { in destroy() argument
116 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX20 _ForwardIterator destroy_n(_ForwardIterator __first, _Siz argument
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/__numeric/
H A Dreduce.h30 reduce(_InputIterator __first, _InputIterator __last, _Tp __init, _BinaryOp __b) { in reduce()
38 reduce(_InputIterator __first, _InputIterator __last, _Tp __init) { in reduce()
44 reduce(_InputIterator __first, _InputIterator __last) { in reduce()

123456