Lines Matching refs:__value
46 { enum { __value = 0 }; }; enumerator
185 return _Insert_range_from_self_is_safe<_Sequence>::__value in __foreign_iterator_aux()
352 _ForwardIterator __last, const _Tp& __value) in __check_partitioned_lower() argument
354 while (__first != __last && *__first < __value) in __check_partitioned_lower()
359 while (__first != __last && !(*__first < __value)) in __check_partitioned_lower()
369 _ForwardIterator __last, const _Tp& __value) in __check_partitioned_upper() argument
371 while (__first != __last && !(__value < *__first)) in __check_partitioned_upper()
376 while (__first != __last && __value < *__first) in __check_partitioned_upper()
387 _ForwardIterator __last, const _Tp& __value, in __check_partitioned_lower() argument
390 while (__first != __last && bool(__pred(*__first, __value))) in __check_partitioned_lower()
395 while (__first != __last && !bool(__pred(*__first, __value))) in __check_partitioned_lower()
405 _ForwardIterator __last, const _Tp& __value, in __check_partitioned_upper() argument
408 while (__first != __last && !bool(__pred(__value, *__first))) in __check_partitioned_upper()
413 while (__first != __last && bool(__pred(__value, *__first))) in __check_partitioned_upper()