Home | History | Annotate | Download | only in bits

Lines Matching refs:__e

78       _S_do_it(_Tp* __b, _Tp* __e)
80 while (__b != __e)
90 _S_do_it(_Tp* __b, _Tp* __e)
91 { __builtin_memset(__b, 0, (__e - __b) * sizeof(_Tp)); }
96 __valarray_default_construct(_Tp* __b, _Tp* __e)
98 _Array_default_ctor<_Tp, __is_scalar<_Tp>::__value>::_S_do_it(__b, __e);
110 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t)
112 while (__b != __e)
121 _S_do_it(_Tp* __b, _Tp* __e, const _Tp __t)
123 while (__b != __e)
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);
136 // copy-construct raw array [__o, *) from plain array [__b, __e)
145 _S_do_it(const _Tp* __b, const _Tp* __e, _Tp* __restrict__ __o)
147 while (__b != __e)
156 _S_do_it(const _Tp* __b, const _Tp* __e, _Tp* __restrict__ __o)
157 { __builtin_memcpy(__o, __b, (__e - __b) * sizeof(_Tp)); }
162 __valarray_copy_construct(const _Tp* __b, const _Tp* __e,
165 _Array_copy_ctor<_Tp, __is_trivial(_Tp)>::_S_do_it(__b, __e, __o);
206 __valarray_destroy_elements(_Tp* __b, _Tp* __e)
209 while (__b != __e)
550 const _Expr<_Dom, _Tp>& __e, size_t __n) \
554 *__p _Op##= __e[__i]; \
582 const _Expr<_Dom, _Tp>& __e, size_t __n) \
586 *__p _Op##= __e[__i]; \
614 const _Expr<_Dom, _Tp>& __e, size_t __n) \
618 __a._M_data[*__j] _Op##= __e[__k]; \
662 const _Expr<_Dom, _Tp>& __e, size_t __n) \
673 *__p _Op##= __e[__i]; \