• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/libstdc++/include/bits/

Lines Matching defs:__value

164       std::__iter_swap<__are_same<_ValueType1, _ValueType2>::__value &&
165 __are_same<_ValueType1 &, _ReferenceType1>::__value &&
166 __are_same<_ValueType2 &, _ReferenceType2>::__value>::
310 const bool __simple = (__is_scalar<_ValueTypeI>::__value
311 && __is_pointer<_II>::__value
312 && __is_pointer<_OI>::__value
313 && __are_same<_ValueTypeI, _ValueTypeO>::__value);
320 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
325 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
330 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, _CharT*>::__type
398 const bool __in = __is_normal_iterator<_InputIterator>::__value;
399 const bool __out = __is_normal_iterator<_OutputIterator>::__value;
406 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
458 const bool __simple = (__is_scalar<_ValueType1>::__value
459 && __is_pointer<_BI1>::__value
460 && __is_pointer<_BI2>::__value
461 && __are_same<_ValueType1, _ValueType2>::__value);
536 const bool __bi1 = __is_normal_iterator<_BI1>::__value;
537 const bool __bi2 = __is_normal_iterator<_BI2>::__value;
549 const _Tp& __value)
552 *__first = __value;
562 const _Tp& __value)
564 const _Tp __tmp = __value;
583 fill(_ForwardIterator __first, _ForwardIterator __last, const _Tp& __value)
590 const bool __scalar = __is_scalar<_Tp>::__value;
591 std::__fill<__scalar>::fill(__first, __last, __value);
624 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
627 *__first = __value;
637 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
639 const _Tp __tmp = __value;
659 fill_n(_OutputIterator __first, _Size __n, const _Tp& __value)
664 const bool __scalar = __is_scalar<_Tp>::__value;
665 return std::__fill_n<__scalar>::fill_n(__first, __n, __value);