Lines Matching defs:__value
47 __find(_Iter __first, _Sent __last, const _Tp& __value, _Proj& __proj) {
49 if (std::__invoke(__proj, *__first) == __value)
61 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj&) {
62 if (auto __ret = std::__constexpr_memchr(__first, __value, __last - __first))
74 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj&) {
75 if (auto __ret = std::__constexpr_wmemchr(__first, __value, __last - __first))
91 __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj& __proj) {
92 if (__value < numeric_limits<_Tp>::min() || __value > numeric_limits<_Tp>::max())
94 return std::__find(__first, __last, _Tp(__value), __proj);
136 __find(__bit_iterator<_Cp, _IsConst> __first, __bit_iterator<_Cp, _IsConst> __last, const _Tp& __value, _Proj&) {
137 if (static_cast<bool>(__value))
154 __find(_SegmentedIterator __first, _SegmentedIterator __last, const _Tp& __value, _Proj& __proj) {
155 return std::__find_segment_if(std::move(__first), std::move(__last), __find_segment<_Tp>(__value), __proj);
162 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __find_segment(const _Tp& __value) : __value_(__value) {}
174 find(_InputIterator __first, _InputIterator __last, const _Tp& __value) {
177 __first, std::__find(std::__unwrap_iter(__first), std::__unwrap_iter(__last), __value, __proj));