Home | History | Annotate | Download | only in glshared

Lines Matching refs:right

971 template<int Left, int Mid, int Right>
972 ExprP<Matrix<float, Left, Right> > operator* (const ExprP<Matrix<float, Left, Mid> >& left,
973 const ExprP<Matrix<float, Mid, Right> >& right);
976 const ExprP<Matrix<float, Rows, Cols> >& right);
979 const ExprP<Vector<float, Rows> >& right);
982 const ExprP<float>& right);
985 const ExprP<Matrix<float, Rows, Cols> >& right);
3340 const IArg1& right = iargs.b;
3351 call<Mul>(ctx, left[ndx][row], right[col][ndx]));
3376 const IArg1& right = iargs.b;
3384 element = call<Add>(ctx, element, call<Mul>(ctx, left[row], right[col][row]));
3408 const IArg1& right = iargs.b;
3410 return call<VecMatMul<Cols, Rows> >(ctx, right,
3446 const ExprP<Vector<float, Cols> >& right)
3448 return app<OuterProduct<Rows, Cols> >(left, right);
3865 const ExprP<Matrix<float, Middle, RightCols> >& right)
3867 return app<MatMul<LeftRows, Middle, RightCols> >(left, right);
3872 const ExprP<Matrix<float, Rows, Cols> >& right)
3874 return app<VecMatMul<Rows, Cols> >(left, right);
3879 const ExprP<Vector<float, Rows> >& right)
3881 return app<MatVecMul<Rows, Cols> >(left, right);
3886 const ExprP<float>& right)
3888 return app<ScalarMatFunc<Mul, Rows, Cols> >(left, right);
3893 const ExprP<Matrix<float, Rows, Cols> >& right)
3895 return app<CompMatFunc<Add, Rows, Cols> >(left, right);