Lines Matching defs:right
1007 const ExprP<Matrix<float, Mid, Right> >& right);
1010 const ExprP<Matrix<float, Rows, Cols> >& right);
1013 const ExprP<Vector<float, Rows> >& right);
1016 const ExprP<float>& right);
1019 const ExprP<Matrix<float, Rows, Cols> >& right);
3625 const IArg1& right = iargs.b;
3636 call<Mul>(ctx, left[ndx][row], right[col][ndx]));
3661 const IArg1& right = iargs.b;
3669 element = call<Add>(ctx, element, call<Mul>(ctx, left[row], right[col][row]));
3693 const IArg1& right = iargs.b;
3695 return call<VecMatMul<Cols, Rows> >(ctx, right,
3731 const ExprP<Vector<float, Cols> >& right)
3733 return app<OuterProduct<Rows, Cols> >(left, right);
4150 const ExprP<Matrix<float, Middle, RightCols> >& right)
4152 return app<MatMul<LeftRows, Middle, RightCols> >(left, right);
4157 const ExprP<Matrix<float, Rows, Cols> >& right)
4159 return app<VecMatMul<Rows, Cols> >(left, right);
4164 const ExprP<Vector<float, Rows> >& right)
4166 return app<MatVecMul<Rows, Cols> >(left, right);
4171 const ExprP<float>& right)
4173 return app<ScalarMatFunc<Mul, Rows, Cols> >(left, right);
4178 const ExprP<Matrix<float, Rows, Cols> >& right)
4180 return app<CompMatFunc<Add, Rows, Cols> >(left, right);