Searched refs:__e (Results 1 - 12 of 12) sorted by relevance

/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dmask_array.h168 mask_array<_Tp>::operator=(const _Expr<_Ex, _Tp>& __e) const
169 { std::__valarray_copy(__e, __e.size(), _M_array, _M_mask); }
184 mask_array<_Tp>::operator _Op##=(const _Expr<_Dom, _Tp>& __e) const\
186 _Array_augmented_##_Name(_M_array, _M_mask, __e, __e.size()); \
H A Dvalarray_before.h412 _FunBase(const _Dom& __e, value_type __f(_Arg)) argument
413 : _M_expr(__e), _M_func(__f) {}
432 _ValFunClos(const _Dom& __e, _Tp __f(_Tp)) : _Base(__e, __f) {} argument
452 _RefFunClos(const _Dom& __e, _Tp __f(const _Tp&)) argument
453 : _Base(__e, __f) {}
478 _UnBase(const _Arg& __e) : _M_expr(__e) {} argument
497 _UnClos(const _Arg& __e) : _Base(__e) {} argument
508 _UnClos(const _Arg& __e) argument
544 _BinBase2(const _Clos& __e, const _Vt& __t) argument
564 _BinBase1(const _Vt& __t, const _Clos& __e) argument
673 _SBase(const _Dom& __e, const slice& __s) argument
720 _SClos(const _Dom& __e, const slice& __s) argument
[all...]
H A Dvalarray_array.h81 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e) argument
83 while (__b != __e)
93 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e) argument
94 { std::memset(__b, 0, (__e - __b) * sizeof(_Tp)); }
99 __valarray_default_construct(_Tp* __restrict__ __b, _Tp* __restrict__ __e) argument
101 _Array_default_ctor<_Tp, __is_pod<_Tp>::__value>::_S_do_it(__b, __e);
113 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t) argument
115 while (__b != __e)
124 _S_do_it(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t) argument
126 while (__b != __e)
133 __valarray_fill_construct(_Tp* __restrict__ __b, _Tp* __restrict__ __e, const _Tp __t) argument
149 _S_do_it(const _Tp* __restrict__ __b, const _Tp* __restrict__ __e, _Tp* __restrict__ __o) argument
161 _S_do_it(const _Tp* __restrict__ __b, const _Tp* __restrict__ __e, _Tp* __restrict__ __o) argument
168 __valarray_copy_construct(const _Tp* __restrict__ __b, const _Tp* __restrict__ __e, _Tp* __restrict__ __o) argument
213 __valarray_destroy_elements(_Tp* __restrict__ __b, _Tp* __restrict__ __e) argument
[all...]
H A Dvalarray_after.h54 _GBase (const _Dom& __e, const valarray<size_t>& __i) argument
55 : _M_expr (__e), _M_index(__i) {}
99 _GClos (const _Dom& __e, const valarray<size_t>& __i) argument
100 : _Base (__e, __i) {}
123 _IBase (const _Dom& __e, const valarray<size_t>& __i) argument
124 : _M_expr (__e), _M_index (__i) {}
146 _IClos (const _Dom& __e, const valarray<size_t>& __i) argument
147 : _Base (__e, __i) {}
384 operator _Op(const _Expr<_Dom,typename _Dom::value_type>& __e, \
390 return _Expr<_Closure, _Value>(_Closure(__e(), __
[all...]
H A Dgslice_array.h174 gslice_array<_Tp>::operator=(const _Expr<_Dom, _Tp>& __e) const
176 std::__valarray_copy (__e, _M_index.size(), _M_array,
193 gslice_array<_Tp>::operator _Op##= (const _Expr<_Dom, _Tp>& __e) const\
195 _Array_augmented_##_Name(_M_array, _Array<size_t>(_M_index), __e,\
H A Dindirect_array.h173 indirect_array<_Tp>::operator=(const _Expr<_Dom, _Tp>& __e) const
174 { std::__valarray_copy(__e, _M_sz, _M_array, _M_index); }
188 indirect_array<_Tp>::operator _Op##=(const _Expr<_Dom,_Tp>& __e) const\
190 _Array_augmented_##_Name(_M_array, _M_index, __e, _M_sz); \
H A Dslice_array.h233 slice_array<_Tp>::operator=(const _Expr<_Dom,_Tp>& __e) const
234 { std::__valarray_copy(__e, _M_sz, _M_array, _M_stride); }
248 slice_array<_Tp>::operator _Op##=(const _Expr<_Dom,_Tp>& __e) const\
250 _Array_augmented_##_Name(_M_array, _M_stride, __e, _M_sz); \
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_valarray.h149 valarray(const _Expr<_Dom, _Tp>& __e);
621 valarray<_Tp>::valarray(const _Expr<_Dom, _Tp>& __e) argument
622 : _M_size(__e.size()), _M_data(__valarray_get_storage<_Tp>(_M_size))
623 { std::__valarray_copy_construct(__e, _M_size, _Array<_Tp>(_M_data)); }
692 valarray<_Tp>::operator=(const _Expr<_Dom, _Tp>& __e) argument
694 _GLIBCXX_DEBUG_ASSERT(_M_size == __e.size());
695 std::__valarray_copy(__e, _M_size, _Array<_Tp>(_M_data));
734 size_t __e = __m.size(); local
735 for (size_t __i=0; __i<__e; ++__i)
746 size_t __e local
[all...]
/freebsd-11-stable/contrib/libstdc++/src/
H A Dios.cc168 ios_base::_M_call_callbacks(event __e) throw() argument
174 { (*__p->_M_fn) (__e, *this, __p->_M_index); }
/freebsd-11-stable/sys/sys/
H A Dstdatomic.h289 __typeof__(*__ep) __e = *__ep; \
292 __e, desired)) == __e); \
/freebsd-11-stable/contrib/llvm-project/clang/lib/Headers/
H A Davxintrin.h3646 /// \param __e
3661 float __e, float __f, float __g, float __h)
3663 return __extension__ (__m256){ __h, __g, __f, __e, __d, __c, __b, __a };
3913 /// \param __e
3928 float __e, float __f, float __g, float __h)
3930 return _mm256_set_ps(__h, __g, __f, __e, __d, __c, __b, __a);
3660 _mm256_set_ps(float __a, float __b, float __c, float __d, float __e, float __f, float __g, float __h) argument
3927 _mm256_setr_ps(float __a, float __b, float __c, float __d, float __e, float __f, float __g, float __h) argument
/freebsd-11-stable/contrib/gdb/gdb/
H A Dgnu-nat.c141 ? ({ error_t __e; \
143 __e = INF_MSGPORT_RPC (inf, rpc_expr); \
145 __e; }) \

Completed in 144 milliseconds