Lines Matching defs:arg0

985 ExprP<float>						operator-(const ExprP<float>&						arg0);
986 ExprP<float> operator+(const ExprP<float>& arg0,
988 ExprP<float> operator-(const ExprP<float>& arg0,
990 ExprP<float> operator*(const ExprP<float>& arg0,
992 ExprP<float> operator/(const ExprP<float>& arg0,
995 ExprP<Vector<float, Size> > operator-(const ExprP<Vector<float, Size> >& arg0);
997 ExprP<Vector<float, Size> > operator*(const ExprP<Vector<float, Size> >& arg0,
1000 ExprP<Vector<float, Size> > operator*(const ExprP<Vector<float, Size> >& arg0,
1003 ExprP<Vector<float, Size> > operator-(const ExprP<Vector<float, Size> >& arg0,
1229 const IArg0& arg0 = IArg0(),
1234 return this->applyArgs(ctx, IArgs(arg0, arg1, arg2, arg3));
1241 ExprP<Ret> operator() (const ExprP<Arg0>& arg0 = voidP(),
1295 const ExprP<Arg0>& arg0 = voidP(),
1300 m_args (arg0, arg1, arg2, arg3) {}
1372 const ExprP<typename Sig::Arg0>& arg0 = voidP(),
1377 return exprP(new Apply<Sig>(func, arg0, arg1, arg2, arg3));
1381 ExprP<typename Sig::Ret> Func<Sig>::operator() (const ExprP<typename Sig::Arg0>& arg0,
1386 return createApply(*this, arg0, arg1, arg2, arg3);
1390 ExprP<typename F::Ret> app (const ExprP<typename F::Arg0>& arg0 = voidP(),
1395 return createApply(instance<F>(), arg0, arg1, arg2, arg3);
1400 const typename F::IArg0& arg0 = Void(),
1405 return instance<F>().apply(ctx, arg0, arg1, arg2, arg3);
1409 ExprP<T> alternatives (const ExprP<T>& arg0,
1412 return createApply<typename Alternatives<T>::Sig>(instance<Alternatives<T> >(), arg0, arg1);
1430 const VariableP<Arg0>& arg0,
1434 : Apply<Sig> (func, arg0, arg1, arg2, arg3) {}
1450 const VariableP<typename Sig::Arg0>& arg0,
1455 return exprP(new ApplyVar<Sig>(func, arg0, arg1, arg2, arg3));
1640 const IArg0& arg0 = iargs.a;
1644 if (canSucceed(arg0, arg1))
1646 if (canFail(arg0, arg1))
1709 TCU_INTERVAL_APPLY_MONOTONE1(ret, arg0, iarg0, val,
1711 point = this->applyPoint(ctx, arg0)));
1724 virtual Interval applyPoint (const EvalContext& ctx, double arg0) const
1726 const double exact = this->applyExact(arg0);
1727 const double prec = this->precision(ctx, exact, arg0);
1728 const double wprec = this->warningPrecision(ctx, exact, arg0);
1746 virtual double warningPrecision (const EvalContext& ctx, double exact, double arg0) const
1748 return precision(ctx, exact, arg0);
2200 ExprP<TRET> NAME (const ExprP<T0>& arg0) { return app<CLASS>(arg0); }
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); \
2738 ExprP<Matrix<T, Rows, 2> > mat2 (const ExprP<Vector<T, Rows> >& arg0,
2741 return app<GenMat<T, Rows, 2> >(arg0, arg1);
2745 ExprP<Matrix<T, Rows, 3> > mat3 (const ExprP<Vector<T, Rows> >& arg0,
2749 return app<GenMat<T, Rows, 3> >(arg0, arg1, arg2);
2753 ExprP<Matrix<T, Rows, 4> > mat4 (const ExprP<Vector<T, Rows> >& arg0,
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);
3960 ExprP<float> operator- (const ExprP<float>& arg0)
3962 return app<Negate>(arg0);
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);
4114 ExprP<Vector<float, Size> > operator*(const ExprP<Vector<float, Size> >& arg0,
4117 return app<VectorizedFunc<Mul, Size> >(arg0, arg1);
4121 ExprP<Vector<float, Size> > operator*(const ExprP<Vector<float, Size> >& arg0,
4124 return app<FixedVecFunc<Mul, Size> >(arg0, arg1);
4128 ExprP<Vector<float, Size> > operator/(const ExprP<Vector<float, Size> >& arg0,
4131 return app<FixedVecFunc<Div, Size> >(arg0, arg1);
4135 ExprP<Vector<float, Size> > operator-(const ExprP<Vector<float, Size> >& arg0)
4137 return app<VectorizedFunc<Negate, Size> >(arg0);
4141 ExprP<Vector<float, Size> > operator-(const ExprP<Vector<float, Size> >& arg0,
4144 return app<VectorizedFunc<Sub, Size> >(arg0, arg1);