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* __b, _Tp* __e, const _Tp __t)
111 new(__b++) _Tp(__t);
119 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t)
122 *__b++ = __t;
128 __valarray_fill_construct(_Tp* __b, _Tp* __e, const _Tp __t)
130 _Array_init_ctor<_Tp, __is_trivial(_Tp)>::_S_do_it(__b, __e, __t);
214 // Fill a plain array __a[<__n>] with __t
217 __valarray_fill(_Tp* __restrict__ __a, size_t __n, const _Tp& __t)
220 *__a++ = __t;
223 // fill strided array __a[<__n-1 : __s>] with __t
227 size_t __s, const _Tp& __t)
230 *__a = __t;
237 size_t __n, const _Tp& __t)
240 __a[*__i] = __t;
375 _Value_type __t = __a[__i];
376 if (__t < __r)
377 __r = __t;
391 _Value_type __t = __a[__i];
392 if (__t > __r)
393 __r = __t;
435 __valarray_fill (_Array<_Tp> __a, size_t __n, const _Tp& __t)
436 { std::__valarray_fill(__a._M_data, __n, __t); }
440 __valarray_fill(_Array<_Tp> __a, size_t __n, size_t __s, const _Tp& __t)
441 { std::__valarray_fill(__a._M_data, __n, __s, __t); }
446 size_t __n, const _Tp& __t)
447 { std::__valarray_fill(__a._M_data, __i._M_data, __n, __t); }
530 _Array_augmented_##_Name(_Array<_Tp> __a, size_t __n, const _Tp& __t) \
533 *__p _Op##= __t; \