Lines Matching defs:__value
46 __find(_Iter __first, _Sent __last, const _Tp& __value, _Proj& __proj) {
48 if (std::__invoke(__proj, *__first) == __value)
60 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj&) {
61 if (auto __ret = std::__constexpr_memchr(__first, __value, __last - __first))
73 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR_SINCE_CXX14 _Tp* __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj&) {
74 if (auto __ret = std::__constexpr_wmemchr(__first, __value, __last - __first))
90 __find(_Tp* __first, _Tp* __last, const _Up& __value, _Proj& __proj) {
91 if (__value < numeric_limits<_Tp>::min() || __value > numeric_limits<_Tp>::max())
93 return std::__find(__first, __last, _Tp(__value), __proj);
135 __find(__bit_iterator<_Cp, _IsConst> __first, __bit_iterator<_Cp, _IsConst> __last, const _Tp& __value, _Proj&) {
136 if (static_cast<bool>(__value))
151 __find(_SegmentedIterator __first, _SegmentedIterator __last, const _Tp& __value, _Proj& __proj) {
152 return std::__find_segment_if(std::move(__first), std::move(__last), __find_segment<_Tp>(__value), __proj);
159 _LIBCPP_HIDE_FROM_ABI _LIBCPP_CONSTEXPR __find_segment(const _Tp& __value) : __value_(__value) {}
171 find(_InputIterator __first, _InputIterator __last, const _Tp& __value) {
174 __first, std::__find(std::__unwrap_iter(__first), std::__unwrap_iter(__last), __value, __proj));