Home | History | Annotate | Download | only in bits

Lines Matching defs:__t

101   // Turn a raw-memory into an array of _Tp filled with __t
110 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t)
113 new(__b++) _Tp(__t);
121 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t)
124 *__b++ = __t;
130 __valarray_fill_construct(_Tp* __b, _Tp* __e, const _Tp __t)
132 _Array_init_ctor<_Tp, __is_trivial(_Tp)>::_S_do_it(__b, __e, __t);
216 // Fill a plain array __a[<__n>] with __t
219 __valarray_fill(_Tp* __restrict__ __a, size_t __n, const _Tp& __t)
222 *__a++ = __t;
225 // fill strided array __a[<__n-1 : __s>] with __t
229 size_t __s, const _Tp& __t)
232 *__a = __t;
239 size_t __n, const _Tp& __t)
242 __a[*__i] = __t;
377 _Value_type __t = __a[__i];
378 if (__t < __r)
379 __r = __t;
393 _Value_type __t = __a[__i];
394 if (__t > __r)
395 __r = __t;
437 __valarray_fill (_Array<_Tp> __a, size_t __n, const _Tp& __t)
438 { std::__valarray_fill(__a._M_data, __n, __t); }
442 __valarray_fill(_Array<_Tp> __a, size_t __n, size_t __s, const _Tp& __t)
443 { std::__valarray_fill(__a._M_data, __n, __s, __t); }
448 size_t __n, const _Tp& __t)
449 { std::__valarray_fill(__a._M_data, __i._M_data, __n, __t); }
532 _Array_augmented_##_Name(_Array<_Tp> __a, size_t __n, const _Tp& __t) \
535 *__p _Op##= __t; \