Home | History | Annotate | Download | only in bits

Lines Matching refs:__e

76       _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e)
78 while (__b != __e)
88 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e)
89 { __builtin_memset(__b, 0, (__e - __b) * sizeof(_Tp)); }
94 __valarray_default_construct(_Tp* __restrict__ __b, _Tp* __restrict__ __e)
96 _Array_default_ctor<_Tp, __is_scalar<_Tp>::__value>::_S_do_it(__b, __e);
108 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t)
110 while (__b != __e)
119 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t)
121 while (__b != __e)
128 __valarray_fill_construct(_Tp* __restrict__ __b, _Tp* __restrict__ __e,
131 _Array_init_ctor<_Tp, __is_pod(_Tp)>::_S_do_it(__b, __e, __t);
135 // copy-construct raw array [__o, *) from plain array [__b, __e)
144 _S_do_it(const _Tp* __restrict__ __b, const _Tp* __restrict__ __e,
147 while (__b != __e)
156 _S_do_it(const _Tp* __restrict__ __b, const _Tp* __restrict__ __e,
158 { __builtin_memcpy(__o, __b, (__e - __b) * sizeof(_Tp)); }
164 const _Tp* __restrict__ __e,
167 _Array_copy_ctor<_Tp, __is_pod(_Tp)>::_S_do_it(__b, __e, __o);
208 __valarray_destroy_elements(_Tp* __restrict__ __b, _Tp* __restrict__ __e)
211 while (__b != __e)
553 const _Expr<_Dom, _Tp>& __e, size_t __n) \
557 *__p _Op##= __e[__i]; \
585 const _Expr<_Dom, _Tp>& __e, size_t __n) \
589 *__p _Op##= __e[__i]; \
617 const _Expr<_Dom, _Tp>& __e, size_t __n) \
621 __a._M_data[*__j] _Op##= __e[__k]; \
665 const _Expr<_Dom, _Tp>& __e, size_t __n) \
676 *__p _Op##= __e[__i]; \