Searched refs:MatOp_GEMM (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/core/src/ |
D | matop.cpp | 123 class MatOp_GEMM : public MatOp class 126 MatOp_GEMM() {} in MatOp_GEMM() function in cv::MatOp_GEMM 127 virtual ~MatOp_GEMM() {} in ~MatOp_GEMM() 142 static MatOp_GEMM g_MatOp_GEMM; 572 MatOp_GEMM::makeExpr(res, flags, m1, m2, scale); in matmul() 805 MatOp_GEMM::makeExpr(e, 0, a, b); in operator *() 1450 void MatOp_GEMM::assign(const MatExpr& e, Mat& m, int _type) const in assign() 1459 void MatOp_GEMM::add(const MatExpr& e1, const MatExpr& e2, MatExpr& res) const in add() 1465 MatOp_GEMM::makeExpr(res, (e1.flags & ~CV_GEMM_C_T)|(isT(e2) ? CV_GEMM_C_T : 0), in add() 1468 MatOp_GEMM::makeExpr(res, (e2.flags & ~CV_GEMM_C_T)|(isT(e1) ? CV_GEMM_C_T : 0), in add() [all …]
|