Lines Matching refs:Aref
81 Aref(A, num_row_a, num_col_a); \
147 block.noalias() += Aref * Bref; in CERES_GEMM_BEGIN()
149 block.noalias() -= Aref * Bref; in CERES_GEMM_BEGIN()
151 block.noalias() = Aref * Bref; in CERES_GEMM_BEGIN()
207 block.noalias() += Aref.transpose() * Bref; in CERES_GEMM_BEGIN()
209 block.noalias() -= Aref.transpose() * Bref; in CERES_GEMM_BEGIN()
211 block.noalias() = Aref.transpose() * Bref; in CERES_GEMM_BEGIN()
282 Aref(A, num_row_a, num_col_a); in MatrixVectorMultiply()
289 cref += Aref.lazyProduct(bref); in MatrixVectorMultiply()
291 cref -= Aref.lazyProduct(bref); in MatrixVectorMultiply()
293 cref = Aref.lazyProduct(bref); in MatrixVectorMultiply()
333 Aref(A, num_row_a, num_col_a); in MatrixTransposeVectorMultiply()
340 cref += Aref.transpose().lazyProduct(bref); in MatrixTransposeVectorMultiply()
342 cref -= Aref.transpose().lazyProduct(bref); in MatrixTransposeVectorMultiply()
344 cref = Aref.transpose().lazyProduct(bref); in MatrixTransposeVectorMultiply()