Lines Matching refs:_Op

431 template <class _Op, class _A0>
433 typedef typename _Op::__result_type __result_type;
436 _Op __op_;
439 _LIBCPP_HIDE_FROM_ABI _UnaryOp(const _Op& __op, const _A0& __a0) : __op_(__op), __a0_(__a0) {}
446 template <class _Op, class _A0, class _A1>
448 typedef typename _Op::__result_type __result_type;
451 _Op __op_;
455 _LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const _A0& __a0, const _A1& __a1)
964 template <class _Op, class _Tp>
965 struct _UnaryOp<_Op, valarray<_Tp> > {
966 typedef typename _Op::__result_type __result_type;
969 _Op __op_;
972 …_LIBCPP_HIDE_FROM_ABI _UnaryOp(const _Op& __op, const valarray<_Tp>& __a0) : __op_(__op), __a0_(__…
979 template <class _Op, class _Tp, class _A1>
980 struct _BinaryOp<_Op, valarray<_Tp>, _A1> {
981 typedef typename _Op::__result_type __result_type;
984 _Op __op_;
988 _LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const valarray<_Tp>& __a0, const _A1& __a1)
996 template <class _Op, class _A0, class _Tp>
997 struct _BinaryOp<_Op, _A0, valarray<_Tp> > {
998 typedef typename _Op::__result_type __result_type;
1001 _Op __op_;
1005 _LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const _A0& __a0, const valarray<_Tp>& __a1)
1013 template <class _Op, class _Tp>
1014 struct _BinaryOp<_Op, valarray<_Tp>, valarray<_Tp> > {
1015 typedef typename _Op::__result_type __result_type;
1018 _Op __op_;
1022 …_LIBCPP_HIDE_FROM_ABI _BinaryOp(const _Op& __op, const valarray<_Tp>& __a0, const valarray<_Tp>& _…
1956 typedef __apply_expr<value_type, value_type (*)(value_type)> _Op;
1957 typedef _UnaryOp<_Op, _ValExpr> _NewExpr;
1958 return __val_expr<_NewExpr>(_NewExpr(_Op(__f), __expr_));
1963 typedef __apply_expr<value_type, value_type (*)(const value_type&)> _Op;
1964 typedef _UnaryOp<_Op, _ValExpr> _NewExpr;
1965 return __val_expr<_NewExpr>(_NewExpr(_Op(__f), __expr_));
2341 using _Op = _UnaryOp<__unary_plus<_Tp>, const valarray<_Tp>&>;
2342 return __val_expr<_Op>(_Op(__unary_plus<_Tp>(), *this));
2347 using _Op = _UnaryOp<negate<_Tp>, const valarray<_Tp>&>;
2348 return __val_expr<_Op>(_Op(negate<_Tp>(), *this));
2353 using _Op = _UnaryOp<__bit_not<_Tp>, const valarray<_Tp>&>;
2354 return __val_expr<_Op>(_Op(__bit_not<_Tp>(), *this));
2359 using _Op = _UnaryOp<logical_not<_Tp>, const valarray<_Tp>&>;
2360 return __val_expr<_Op>(_Op(logical_not<_Tp>(), *this));
2664 typedef _BinaryOp<multiplies<value_type>, _Expr1, _Expr2> _Op;
2665 return __val_expr<_Op>(_Op(multiplies<value_type>(), __x, __y));
2673 typedef _BinaryOp<multiplies<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2674 …return __val_expr<_Op>(_Op(multiplies<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size(…
2682 typedef _BinaryOp<multiplies<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2683 …return __val_expr<_Op>(_Op(multiplies<value_type>(), __scalar_expr<value_type>(__x, __y.size()), _…
2692 typedef _BinaryOp<divides<value_type>, _Expr1, _Expr2> _Op;
2693 return __val_expr<_Op>(_Op(divides<value_type>(), __x, __y));
2701 typedef _BinaryOp<divides<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2702 …return __val_expr<_Op>(_Op(divides<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size()))…
2710 typedef _BinaryOp<divides<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2711 …return __val_expr<_Op>(_Op(divides<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y)…
2720 typedef _BinaryOp<modulus<value_type>, _Expr1, _Expr2> _Op;
2721 return __val_expr<_Op>(_Op(modulus<value_type>(), __x, __y));
2729 typedef _BinaryOp<modulus<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2730 …return __val_expr<_Op>(_Op(modulus<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size()))…
2738 typedef _BinaryOp<modulus<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2739 …return __val_expr<_Op>(_Op(modulus<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y)…
2748 typedef _BinaryOp<plus<value_type>, _Expr1, _Expr2> _Op;
2749 return __val_expr<_Op>(_Op(plus<value_type>(), __x, __y));
2757 typedef _BinaryOp<plus<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2758 return __val_expr<_Op>(_Op(plus<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size())));
2766 typedef _BinaryOp<plus<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2767 return __val_expr<_Op>(_Op(plus<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y));
2776 typedef _BinaryOp<minus<value_type>, _Expr1, _Expr2> _Op;
2777 return __val_expr<_Op>(_Op(minus<value_type>(), __x, __y));
2785 typedef _BinaryOp<minus<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2786 return __val_expr<_Op>(_Op(minus<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size())));
2794 typedef _BinaryOp<minus<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2795 return __val_expr<_Op>(_Op(minus<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y));
2804 typedef _BinaryOp<bit_xor<value_type>, _Expr1, _Expr2> _Op;
2805 return __val_expr<_Op>(_Op(bit_xor<value_type>(), __x, __y));
2813 typedef _BinaryOp<bit_xor<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2814 …return __val_expr<_Op>(_Op(bit_xor<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size()))…
2822 typedef _BinaryOp<bit_xor<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2823 …return __val_expr<_Op>(_Op(bit_xor<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y)…
2832 typedef _BinaryOp<bit_and<value_type>, _Expr1, _Expr2> _Op;
2833 return __val_expr<_Op>(_Op(bit_and<value_type>(), __x, __y));
2841 typedef _BinaryOp<bit_and<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2842 …return __val_expr<_Op>(_Op(bit_and<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size()))…
2850 typedef _BinaryOp<bit_and<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2851 …return __val_expr<_Op>(_Op(bit_and<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y)…
2860 typedef _BinaryOp<bit_or<value_type>, _Expr1, _Expr2> _Op;
2861 return __val_expr<_Op>(_Op(bit_or<value_type>(), __x, __y));
2869 typedef _BinaryOp<bit_or<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2870 …return __val_expr<_Op>(_Op(bit_or<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size())));
2878 typedef _BinaryOp<bit_or<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2879 …return __val_expr<_Op>(_Op(bit_or<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y));
2888 typedef _BinaryOp<__bit_shift_left<value_type>, _Expr1, _Expr2> _Op;
2889 return __val_expr<_Op>(_Op(__bit_shift_left<value_type>(), __x, __y));
2897 typedef _BinaryOp<__bit_shift_left<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2898 …return __val_expr<_Op>(_Op(__bit_shift_left<value_type>(), __x, __scalar_expr<value_type>(__y, __x…
2906 typedef _BinaryOp<__bit_shift_left<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2907 …return __val_expr<_Op>(_Op(__bit_shift_left<value_type>(), __scalar_expr<value_type>(__x, __y.size…
2916 typedef _BinaryOp<__bit_shift_right<value_type>, _Expr1, _Expr2> _Op;
2917 return __val_expr<_Op>(_Op(__bit_shift_right<value_type>(), __x, __y));
2925 typedef _BinaryOp<__bit_shift_right<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2926 …return __val_expr<_Op>(_Op(__bit_shift_right<value_type>(), __x, __scalar_expr<value_type>(__y, __…
2934 typedef _BinaryOp<__bit_shift_right<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2935 …return __val_expr<_Op>(_Op(__bit_shift_right<value_type>(), __scalar_expr<value_type>(__x, __y.siz…
2944 typedef _BinaryOp<logical_and<value_type>, _Expr1, _Expr2> _Op;
2945 return __val_expr<_Op>(_Op(logical_and<value_type>(), __x, __y));
2953 typedef _BinaryOp<logical_and<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2954 …return __val_expr<_Op>(_Op(logical_and<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size…
2962 typedef _BinaryOp<logical_and<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2963 …return __val_expr<_Op>(_Op(logical_and<value_type>(), __scalar_expr<value_type>(__x, __y.size()), …
2972 typedef _BinaryOp<logical_or<value_type>, _Expr1, _Expr2> _Op;
2973 return __val_expr<_Op>(_Op(logical_or<value_type>(), __x, __y));
2981 typedef _BinaryOp<logical_or<value_type>, _Expr, __scalar_expr<value_type> > _Op;
2982 …return __val_expr<_Op>(_Op(logical_or<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size(…
2990 typedef _BinaryOp<logical_or<value_type>, __scalar_expr<value_type>, _Expr> _Op;
2991 …return __val_expr<_Op>(_Op(logical_or<value_type>(), __scalar_expr<value_type>(__x, __y.size()), _…
3000 typedef _BinaryOp<equal_to<value_type>, _Expr1, _Expr2> _Op;
3001 return __val_expr<_Op>(_Op(equal_to<value_type>(), __x, __y));
3009 typedef _BinaryOp<equal_to<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3010 …return __val_expr<_Op>(_Op(equal_to<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size())…
3018 typedef _BinaryOp<equal_to<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3019 …return __val_expr<_Op>(_Op(equal_to<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y…
3028 typedef _BinaryOp<not_equal_to<value_type>, _Expr1, _Expr2> _Op;
3029 return __val_expr<_Op>(_Op(not_equal_to<value_type>(), __x, __y));
3037 typedef _BinaryOp<not_equal_to<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3038 …return __val_expr<_Op>(_Op(not_equal_to<value_type>(), __x, __scalar_expr<value_type>(__y, __x.siz…
3046 typedef _BinaryOp<not_equal_to<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3047 …return __val_expr<_Op>(_Op(not_equal_to<value_type>(), __scalar_expr<value_type>(__x, __y.size()),…
3056 typedef _BinaryOp<less<value_type>, _Expr1, _Expr2> _Op;
3057 return __val_expr<_Op>(_Op(less<value_type>(), __x, __y));
3065 typedef _BinaryOp<less<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3066 return __val_expr<_Op>(_Op(less<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size())));
3074 typedef _BinaryOp<less<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3075 return __val_expr<_Op>(_Op(less<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y));
3084 typedef _BinaryOp<greater<value_type>, _Expr1, _Expr2> _Op;
3085 return __val_expr<_Op>(_Op(greater<value_type>(), __x, __y));
3093 typedef _BinaryOp<greater<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3094 …return __val_expr<_Op>(_Op(greater<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size()))…
3102 typedef _BinaryOp<greater<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3103 …return __val_expr<_Op>(_Op(greater<value_type>(), __scalar_expr<value_type>(__x, __y.size()), __y)…
3112 typedef _BinaryOp<less_equal<value_type>, _Expr1, _Expr2> _Op;
3113 return __val_expr<_Op>(_Op(less_equal<value_type>(), __x, __y));
3121 typedef _BinaryOp<less_equal<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3122 …return __val_expr<_Op>(_Op(less_equal<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size(…
3130 typedef _BinaryOp<less_equal<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3131 …return __val_expr<_Op>(_Op(less_equal<value_type>(), __scalar_expr<value_type>(__x, __y.size()), _…
3140 typedef _BinaryOp<greater_equal<value_type>, _Expr1, _Expr2> _Op;
3141 return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __y));
3149 typedef _BinaryOp<greater_equal<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3150 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __x, __scalar_expr<value_type>(__y, __x.si…
3158 typedef _BinaryOp<greater_equal<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3159 …return __val_expr<_Op>(_Op(greater_equal<value_type>(), __scalar_expr<value_type>(__x, __y.size())…
3166 typedef _UnaryOp<__abs_expr<value_type>, _Expr> _Op;
3167 return __val_expr<_Op>(_Op(__abs_expr<value_type>(), __x));
3174 typedef _UnaryOp<__acos_expr<value_type>, _Expr> _Op;
3175 return __val_expr<_Op>(_Op(__acos_expr<value_type>(), __x));
3182 typedef _UnaryOp<__asin_expr<value_type>, _Expr> _Op;
3183 return __val_expr<_Op>(_Op(__asin_expr<value_type>(), __x));
3190 typedef _UnaryOp<__atan_expr<value_type>, _Expr> _Op;
3191 return __val_expr<_Op>(_Op(__atan_expr<value_type>(), __x));
3200 typedef _BinaryOp<__atan2_expr<value_type>, _Expr1, _Expr2> _Op;
3201 return __val_expr<_Op>(_Op(__atan2_expr<value_type>(), __x, __y));
3209 typedef _BinaryOp<__atan2_expr<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3210 …return __val_expr<_Op>(_Op(__atan2_expr<value_type>(), __x, __scalar_expr<value_type>(__y, __x.siz…
3218 typedef _BinaryOp<__atan2_expr<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3219 …return __val_expr<_Op>(_Op(__atan2_expr<value_type>(), __scalar_expr<value_type>(__x, __y.size()),…
3226 typedef _UnaryOp<__cos_expr<value_type>, _Expr> _Op;
3227 return __val_expr<_Op>(_Op(__cos_expr<value_type>(), __x));
3234 typedef _UnaryOp<__cosh_expr<value_type>, _Expr> _Op;
3235 return __val_expr<_Op>(_Op(__cosh_expr<value_type>(), __x));
3242 typedef _UnaryOp<__exp_expr<value_type>, _Expr> _Op;
3243 return __val_expr<_Op>(_Op(__exp_expr<value_type>(), __x));
3250 typedef _UnaryOp<__log_expr<value_type>, _Expr> _Op;
3251 return __val_expr<_Op>(_Op(__log_expr<value_type>(), __x));
3258 typedef _UnaryOp<__log10_expr<value_type>, _Expr> _Op;
3259 return __val_expr<_Op>(_Op(__log10_expr<value_type>(), __x));
3268 typedef _BinaryOp<__pow_expr<value_type>, _Expr1, _Expr2> _Op;
3269 return __val_expr<_Op>(_Op(__pow_expr<value_type>(), __x, __y));
3277 typedef _BinaryOp<__pow_expr<value_type>, _Expr, __scalar_expr<value_type> > _Op;
3278 …return __val_expr<_Op>(_Op(__pow_expr<value_type>(), __x, __scalar_expr<value_type>(__y, __x.size(…
3286 typedef _BinaryOp<__pow_expr<value_type>, __scalar_expr<value_type>, _Expr> _Op;
3287 …return __val_expr<_Op>(_Op(__pow_expr<value_type>(), __scalar_expr<value_type>(__x, __y.size()), _…
3294 typedef _UnaryOp<__sin_expr<value_type>, _Expr> _Op;
3295 return __val_expr<_Op>(_Op(__sin_expr<value_type>(), __x));
3302 typedef _UnaryOp<__sinh_expr<value_type>, _Expr> _Op;
3303 return __val_expr<_Op>(_Op(__sinh_expr<value_type>(), __x));
3310 typedef _UnaryOp<__sqrt_expr<value_type>, _Expr> _Op;
3311 return __val_expr<_Op>(_Op(__sqrt_expr<value_type>(), __x));
3318 typedef _UnaryOp<__tan_expr<value_type>, _Expr> _Op;
3319 return __val_expr<_Op>(_Op(__tan_expr<value_type>(), __x));
3326 typedef _UnaryOp<__tanh_expr<value_type>, _Expr> _Op;
3327 return __val_expr<_Op>(_Op(__tanh_expr<value_type>(), __x));