• Home
  • Raw
  • Download

Lines Matching refs:__y

493     _Tp operator()(const _Tp& __x, const _Tp& __y) const
494 {return __x << __y;}
501 _Tp operator()(const _Tp& __x, const _Tp& __y) const
502 {return __x >> __y;}
555 _Tp operator()(const _Tp& __x, const _Tp& __y) const
556 {return atan2(__x, __y);}
603 _Tp operator()(const _Tp& __x, const _Tp& __y) const
604 {return pow(__x, __y);}
3715 swap(valarray<_Tp>& __x, valarray<_Tp>& __y) _NOEXCEPT
3717 __x.swap(__y);
3727 operator*(const _Expr1& __x, const _Expr2& __y)
3731 return __val_expr<_Op>(_Op(multiplies<value_type>(), __x, __y));
3742 operator*(const _Expr& __x, const typename _Expr::value_type& __y)
3747 __x, __scalar_expr<value_type>(__y, __x.size())));
3758 operator*(const typename _Expr::value_type& __x, const _Expr& __y)
3763 __scalar_expr<value_type>(__x, __y.size()), __y));
3773 operator/(const _Expr1& __x, const _Expr2& __y)
3777 return __val_expr<_Op>(_Op(divides<value_type>(), __x, __y));
3788 operator/(const _Expr& __x, const typename _Expr::value_type& __y)
3793 __x, __scalar_expr<value_type>(__y, __x.size())));
3804 operator/(const typename _Expr::value_type& __x, const _Expr& __y)
3809 __scalar_expr<value_type>(__x, __y.size()), __y));
3819 operator%(const _Expr1& __x, const _Expr2& __y)
3823 return __val_expr<_Op>(_Op(modulus<value_type>(), __x, __y));
3834 operator%(const _Expr& __x, const typename _Expr::value_type& __y)
3839 __x, __scalar_expr<value_type>(__y, __x.size())));
3850 operator%(const typename _Expr::value_type& __x, const _Expr& __y)
3855 __scalar_expr<value_type>(__x, __y.size()), __y));
3865 operator+(const _Expr1& __x, const _Expr2& __y)
3869 return __val_expr<_Op>(_Op(plus<value_type>(), __x, __y));
3880 operator+(const _Expr& __x, const typename _Expr::value_type& __y)
3885 __x, __scalar_expr<value_type>(__y, __x.size())));
3896 operator+(const typename _Expr::value_type& __x, const _Expr& __y)
3901 __scalar_expr<value_type>(__x, __y.size()), __y));
3911 operator-(const _Expr1& __x, const _Expr2& __y)
3915 return __val_expr<_Op>(_Op(minus<value_type>(), __x, __y));
3926 operator-(const _Expr& __x, const typename _Expr::value_type& __y)
3931 __x, __scalar_expr<value_type>(__y, __x.size())));
3942 operator-(const typename _Expr::value_type& __x, const _Expr& __y)
3947 __scalar_expr<value_type>(__x, __y.size()), __y));
3957 operator^(const _Expr1& __x, const _Expr2& __y)
3961 return __val_expr<_Op>(_Op(bit_xor<value_type>(), __x, __y));
3972 operator^(const _Expr& __x, const typename _Expr::value_type& __y)
3977 __x, __scalar_expr<value_type>(__y, __x.size())));
3988 operator^(const typename _Expr::value_type& __x, const _Expr& __y)
3993 __scalar_expr<value_type>(__x, __y.size()), __y));
4003 operator&(const _Expr1& __x, const _Expr2& __y)
4007 return __val_expr<_Op>(_Op(bit_and<value_type>(), __x, __y));
4018 operator&(const _Expr& __x, const typename _Expr::value_type& __y)
4023 __x, __scalar_expr<value_type>(__y, __x.size())));
4034 operator&(const typename _Expr::value_type& __x, const _Expr& __y)
4039 __scalar_expr<value_type>(__x, __y.size()), __y));
4049 operator|(const _Expr1& __x, const _Expr2& __y)
4053 return __val_expr<_Op>(_Op(bit_or<value_type>(), __x, __y));
4064 operator|(const _Expr& __x, const typename _Expr::value_type& __y)
4069 __x, __scalar_expr<value_type>(__y, __x.size())));
4080 operator|(const typename _Expr::value_type& __x, const _Expr& __y)
4085 __scalar_expr<value_type>(__x, __y.size()), __y));
4095 operator<<(const _Expr1& __x, const _Expr2& __y)
4099 return __val_expr<_Op>(_Op(__bit_shift_left<value_type>(), __x, __y));
4110 operator<<(const _Expr& __x, const typename _Expr::value_type& __y)
4115 __x, __scalar_expr<value_type>(__y, __x.size())));
4126 operator<<(const typename _Expr::value_type& __x, const _Expr& __y)
4131 __scalar_expr<value_type>(__x, __y.size()), __y));
4141 operator>>(const _Expr1& __x, const _Expr2& __y)
4145 return __val_expr<_Op>(_Op(__bit_shift_right<value_type>(), __x, __y));
4156 operator>>(const _Expr& __x, const typename _Expr::value_type& __y)
4161 __x, __scalar_expr<value_type>(__y, __x.size())));
4172 operator>>(const typename _Expr::value_type& __x, const _Expr& __y)
4177 __scalar_expr<value_type>(__x, __y.size()), __y));
4187 operator&&(const _Expr1& __x, const _Expr2& __y)
4191 return __val_expr<_Op>(_Op(logical_and<value_type>(), __x, __y));
4202 operator&&(const _Expr& __x, const typename _Expr::value_type& __y)
4207 __x, __scalar_expr<value_type>(__y, __x.size())));
4218 operator&&(const typename _Expr::value_type& __x, const _Expr& __y)
4223 __scalar_expr<value_type>(__x, __y.size()), __y));
4233 operator||(const _Expr1& __x, const _Expr2& __y)
4237 return __val_expr<_Op>(_Op(logical_or<value_type>(), __x, __y));
4248 operator||(const _Expr& __x, const typename _Expr::value_type& __y)
4253 __x, __scalar_expr<value_type>(__y, __x.size())));
4264 operator||(const typename _Expr::value_type& __x, const _Expr& __y)
4269 __scalar_expr<value_type>(__x, __y.size()), __y));
4279 operator==(const _Expr1& __x, const _Expr2& __y)
4283 return __val_expr<_Op>(_Op(equal_to<value_type>(), __x, __y));
4294 operator==(const _Expr& __x, const typename _Expr::value_type& __y)
4299 __x, __scalar_expr<value_type>(__y, __x.size())));
4310 operator==(const typename _Expr::value_type& __x, const _Expr& __y)
4315 __scalar_expr<value_type>(__x, __y.size()), __y));
4325 operator!=(const _Expr1& __x, const _Expr2& __y)
4329 return __val_expr<_Op>(_Op(not_equal_to<value_type>(), __x, __y));
4340 operator!=(const _Expr& __x, const typename _Expr::value_type& __y)
4345 __x, __scalar_expr<value_type>(__y, __x.size())));
4356 operator!=(const typename _Expr::value_type& __x, const _Expr& __y)
4361 __scalar_expr<value_type>(__x, __y.size()), __y));
4371 operator<(const _Expr1& __x, const _Expr2& __y)
4375 return __val_expr<_Op>(_Op(less<value_type>(), __x, __y));
4386 operator<(const _Expr& __x, const typename _Expr::value_type& __y)
4391 __x, __scalar_expr<value_type>(__y, __x.size())));
4402 operator<(const typename _Expr::value_type& __x, const _Expr& __y)
4407 __scalar_expr<value_type>(__x, __y.size()), __y));
4417 operator>(const _Expr1& __x, const _Expr2& __y)
4421 return __val_expr<_Op>(_Op(greater<value_type>(), __x, __y));
4432 operator>(const _Expr& __x, const typename _Expr::value_type& __y)
4437 __x, __scalar_expr<value_type>(__y, __x.size())));
4448 operator>(const typename _Expr::value_type& __x, const _Expr& __y)
4453 __scalar_expr<value_type>(__x, __y.size()), __y));
4463 operator<=(const _Expr1& __x, const _Expr2& __y)
4467 return __val_expr<_Op>(_Op(less_equal<value_type>(), __x, __y));
4478 operator<=(const _Expr& __x, const typename _Expr::value_type& __y)
4483 __x, __scalar_expr<value_type>(__y, __x.size())));
4494 operator<=(const typename _Expr::value_type& __x, const _Expr& __y)
4499 __scalar_expr<value_type>(__x, __y.size()), __y));
4509 operator>=(const _Expr1& __x, const _Expr2& __y)
4513 return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __y));
4524 operator>=(const _Expr& __x, const typename _Expr::value_type& __y)
4529 __x, __scalar_expr<value_type>(__y, __x.size())));
4540 operator>=(const typename _Expr::value_type& __x, const _Expr& __y)
4545 __scalar_expr<value_type>(__x, __y.size()), __y));
4611 atan2(const _Expr1& __x, const _Expr2& __y)
4615 return __val_expr<_Op>(_Op(__atan2_expr<value_type>(), __x, __y));
4626 atan2(const _Expr& __x, const typename _Expr::value_type& __y)
4631 __x, __scalar_expr<value_type>(__y, __x.size())));
4642 atan2(const typename _Expr::value_type& __x, const _Expr& __y)
4647 __scalar_expr<value_type>(__x, __y.size()), __y));
4727 pow(const _Expr1& __x, const _Expr2& __y)
4731 return __val_expr<_Op>(_Op(__pow_expr<value_type>(), __x, __y));
4742 pow(const _Expr& __x, const typename _Expr::value_type& __y)
4747 __x, __scalar_expr<value_type>(__y, __x.size())));
4758 pow(const typename _Expr::value_type& __x, const _Expr& __y)
4763 __scalar_expr<value_type>(__x, __y.size()), __y));