Lines Matching defs:__comp
34 _Comp& __comp,
40 if (std::__invoke(__comp, std::__invoke(__proj, *__m), __value)) {
61 __lower_bound_onesided(_ForwardIterator __first, _Sent __last, const _Type& __value, _Comp& __comp, _Proj& __proj) {
63 if (__first == __last || !std::__invoke(__comp, std::__invoke(__proj, *__first), __value))
72 if (__it == __last || !std::__invoke(__comp, std::__invoke(__proj, *__it), __value)) {
77 return std::__lower_bound_bisecting<_AlgPolicy>(__first, __value, __dist, __comp, __proj);
87 __lower_bound(_ForwardIterator __first, _Sent __last, const _Type& __value, _Comp& __comp, _Proj& __proj) {
89 return std::__lower_bound_bisecting<_AlgPolicy>(__first, __value, __dist, __comp, __proj);
94 lower_bound(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value, _Compare __comp) {
97 return std::__lower_bound<_ClassicAlgPolicy>(__first, __last, __value, __comp, __proj);