Lines Matching refs:__t
268 typename iterator_traits<_InputIterator>::value_type __t(*__first);
269 *__result = __t;
272 __t = __t + *__first;
273 *__result = __t;
287 typename iterator_traits<_InputIterator>::value_type __t(*__first);
288 *__result = __t;
291 __t = __binary_op(__t, *__first);
292 *__result = __t;
464 _Result operator()(_Source __t) const noexcept
466 if (__t >= 0) return __t;
467 if (__t == numeric_limits<_Source>::min()) return -static_cast<_Result>(__t);
468 return -__t;
475 _Result operator()(_Source __t) const noexcept { return __t; }