Home
last modified time | relevance | path

Searched defs:__last (Results 1 – 25 of 134) sorted by relevance

123456

/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) { in __rotate_gcd() argument
129 __rotate_impl(_ForwardIterator __first,_ForwardIterator __middle,_ForwardIterator __last,std::forward_iterator_tag) __rotate_impl() argument
142 __rotate_impl(_BidirectionalIterator __first,_BidirectionalIterator __middle,_BidirectionalIterator __last,bidirectional_iterator_tag) __rotate_impl() argument
158 __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 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 …BI _LIBCPP_CONSTEXPR_SINCE_CXX20 void __reverse(_BidirectionalIterator __first, _Sentinel __last) { 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, _ForwardIterator __last, _Compare __comp) { in min_element() argument
63 min_element(_ForwardIterator __first, _ForwardIterator __last) { in min_element() argument
H A Dpush_heap.h33 _RandomAccessIterator __last, in __sift_up() argument
60 __push_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare& __comp) { in __push_heap() argument
67 push_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compar argument
76 push_heap(_RandomAccessIterator __first,_RandomAccessIterator __last) push_heap() argument
[all...]
H A Dunique_copy.h42 _Sent __last, in __unique_copy()
64 _Sent __last, in __unique_copy()
86 _Sent __last, 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 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
92 return __last; in __find_impl() argument
75 __find_impl(_Tp * __first,_Tp * __last,const _Up & __value,_Proj &) __find_impl() 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 Dpartial_sort.h36 _RandomAccessIterator __first, _RandomAccessIterator __middle, _Sentinel __last, _Compare&& __comp) { in __partial_sort_impl() argument
58 __partial_sort(_RandomAccessIterator __first, _RandomAccessIterator __middle, _Sentinel __last, _Compare& __comp) { in __partial_sort() argument
74 _RandomAccessIterator __first, _RandomAccessIterator __middle, _RandomAccessIterator __last, _Compare __comp) { in partial_sort() argument
83 partial_sort(_RandomAccessIterator __first,_RandomAccessIterator __middle,_RandomAccessIterator __last) partial_sort() argument
[all...]
H A Dpstl_count.h
H A Dpartition.h29 __partition_impl(_ForwardIterator __first, _Sentinel __last, _Predicate __pred, forward_iterator_ta… in __partition_impl()
52 _BidirectionalIterator __last = __original_last; in __partition_impl() local
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, _ForwardIterator __last) { in adjacent_find() argument
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
H A Dunique.h33 __unique(_Iter __first, _Sent __last, _BinaryPredicate&& __pred) { in __unique() argument
50 unique(_ForwardIterator __first, _ForwardIterator __last, _BinaryPredicate __pred) { in unique() argument
56 unique(_ForwardIterator __first, _ForwardIterator __last) { in unique() argument
H A Dis_sorted_until.h25 __is_sorted_until(_ForwardIterator __first, _ForwardIterator __last, _Compare __comp) { in __is_sorted_until() argument
39 is_sorted_until(_ForwardIterator __first, _ForwardIterator __last, _Compare __comp) { in is_sorted_until() argument
45 is_sorted_until(_ForwardIterator __first, _ForwardIterator __last) { in is_sorted_until() argument
H A Dfill.h26 __fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, forward_iterator_tag)… in __fill()
33 __fill(_RandomAccessIterator __first, _RandomAccessIterator __last, const _Tp& __value, random_acce… in __fill()
39 fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value) { in fill()
H A Dpstl_sort.h
H A Dsort_heap.h34 __sort_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare&& __comp) { in __sort_heap() argument
46 sort_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { in sort_heap() argument
55 sort_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { in sort_heap() argument
H A Dmake_heap.h31 __make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare&& __comp) { in __make_heap()
46 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last, _Compare __comp) { in make_heap()
52 make_heap(_RandomAccessIterator __first, _RandomAccessIterator __last) { in make_heap()
H A Dsearch_n.h35 _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj) { in __search_n_forward_impl() argument
72 _Iter __first, _Sent __last, _SizeT __count, const _Type& __value, _Pred& __pred, _Proj& __proj, _DiffT __size1) { in __search_n_random_access_impl() argument
139 search_n(_ForwardIterator __first,_ForwardIterator __last,_Size __count,const _Tp & __value,_BinaryPredicate __pred) search_n() argument
148 search_n(_ForwardIterator __first,_ForwardIterator __last,_Size __count,const _Tp & __value) search_n() argument
[all...]
/freebsd-src/contrib/llvm-project/libcxx/include/__charconv/
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...]
H A Dto_chars_integral.h50 __to_chars_itoa(char * __first,char * __last,_Tp __value,true_type) __to_chars_itoa() argument
62 __to_chars_itoa(char * __first,char * __last,_Tp __value,false_type) __to_chars_itoa() argument
75 __to_chars_itoa(char * __first,char * __last,__uint128_t __value,false_type) __to_chars_itoa() argument
99 __to_chars_integral(char * __first,char * __last,_Tp __value,int __base,true_type) __to_chars_integral() 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