Lines Matching defs:arg1
987 const ExprP<float>& arg1);
989 const ExprP<float>& arg1);
991 const ExprP<float>& arg1);
993 const ExprP<float>& arg1);
998 const ExprP<float>& arg1);
1001 const ExprP<Vector<float, Size> >& arg1);
1004 const ExprP<Vector<float, Size> >& arg1);
1230 const IArg1& arg1 = IArg1(),
1234 return this->applyArgs(ctx, IArgs(arg0, arg1, arg2, arg3));
1242 const ExprP<Arg1>& arg1 = voidP(),
1296 const ExprP<Arg1>& arg1 = voidP(),
1300 m_args (arg0, arg1, arg2, arg3) {}
1373 const ExprP<typename Sig::Arg1>& arg1 = voidP(),
1377 return exprP(new Apply<Sig>(func, arg0, arg1, arg2, arg3));
1382 const ExprP<typename Sig::Arg1>& arg1,
1386 return createApply(*this, arg0, arg1, arg2, arg3);
1391 const ExprP<typename F::Arg1>& arg1 = voidP(),
1395 return createApply(instance<F>(), arg0, arg1, arg2, arg3);
1401 const typename F::IArg1& arg1 = Void(),
1405 return instance<F>().apply(ctx, arg0, arg1, arg2, arg3);
1410 const ExprP<T>& arg1)
1412 return createApply<typename Alternatives<T>::Sig>(instance<Alternatives<T> >(), arg0, arg1);
1431 const VariableP<Arg1>& arg1,
1434 : Apply<Sig> (func, arg0, arg1, arg2, arg3) {}
1451 const VariableP<typename Sig::Arg1>& arg1,
1455 return exprP(new ApplyVar<Sig>(func, arg0, arg1, arg2, arg3));
1641 const IArg1& arg1 = iargs.b;
1644 if (canSucceed(arg0, arg1))
1646 if (canFail(arg0, arg1))
2222 ExprP<TRET> NAME (const ExprP<T0>& arg0, const ExprP<T1>& arg1) \
2224 return app<CLASS>(arg0, arg1); \
2247 ExprP<TRET> NAME (const ExprP<T0>& arg0, const ExprP<T1>& arg1, const ExprP<T2>& arg2) \
2249 return app<CLASS>(arg0, arg1, arg2); \
2273 ExprP<TRET> NAME (const ExprP<T0>& arg0, const ExprP<T1>& arg1, \
2276 return app<CLASS>(arg0, arg1, arg2, arg3); \
2739 const ExprP<Vector<T, Rows> >& arg1)
2741 return app<GenMat<T, Rows, 2> >(arg0, arg1);
2746 const ExprP<Vector<T, Rows> >& arg1,
2749 return app<GenMat<T, Rows, 3> >(arg0, arg1, arg2);
2754 const ExprP<Vector<T, Rows> >& arg1,
2758 return app<GenMat<T, Rows, 4> >(arg0, arg1, arg2, arg3);
3950 ExprP<float> operator+ (const ExprP<float>& arg0, const ExprP<float>& arg1)
3952 return app<Add>(arg0, arg1);
3955 ExprP<float> operator- (const ExprP<float>& arg0, const ExprP<float>& arg1)
3957 return app<Sub>(arg0, arg1);
3965 ExprP<float> operator* (const ExprP<float>& arg0, const ExprP<float>& arg1)
3967 return app<Mul>(arg0, arg1);
3970 ExprP<float> operator/ (const ExprP<float>& arg0, const ExprP<float>& arg1)
3972 return app<Div>(arg0, arg1);
4115 const ExprP<Vector<float, Size> >& arg1)
4117 return app<VectorizedFunc<Mul, Size> >(arg0, arg1);
4122 const ExprP<float>& arg1)
4124 return app<FixedVecFunc<Mul, Size> >(arg0, arg1);
4129 const ExprP<float>& arg1)
4131 return app<FixedVecFunc<Div, Size> >(arg0, arg1);
4142 const ExprP<Vector<float, Size> >& arg1)
4144 return app<VectorizedFunc<Sub, Size> >(arg0, arg1);