Home | History | Annotate | Download | only in bits

Lines Matching defs:__t

99   // Turn a raw-memory into an array of _Tp filled with __t
108 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t)
111 new(__b++) _Tp(__t);
119 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t)
122 *__b++ = __t;
129 const _Tp __t)
131 _Array_init_ctor<_Tp, __is_pod(_Tp)>::_S_do_it(__b, __e, __t);
218 // Fill a plain array __a[<__n>] with __t
221 __valarray_fill(_Tp* __restrict__ __a, size_t __n, const _Tp& __t)
224 *__a++ = __t;
227 // fill strided array __a[<__n-1 : __s>] with __t
231 size_t __s, const _Tp& __t)
234 *__a = __t;
241 size_t __n, const _Tp& __t)
244 __a[*__i] = __t;
380 _Value_type __t = __a[__i];
381 if (__t < __r)
382 __r = __t;
396 _Value_type __t = __a[__i];
397 if (__t > __r)
398 __r = __t;
440 __valarray_fill (_Array<_Tp> __a, size_t __n, const _Tp& __t)
441 { std::__valarray_fill(__a._M_data, __n, __t); }
445 __valarray_fill(_Array<_Tp> __a, size_t __n, size_t __s, const _Tp& __t)
446 { std::__valarray_fill(__a._M_data, __n, __s, __t); }
451 size_t __n, const _Tp& __t)
452 { std::__valarray_fill(__a._M_data, __i._M_data, __n, __t); }
535 _Array_augmented_##_Name(_Array<_Tp> __a, size_t __n, const _Tp& __t) \
538 *__p _Op##= __t; \