Home
last modified time | relevance | path

Searched refs:Aref (Results 1 – 3 of 3) sorted by relevance

/external/ceres-solver/internal/ceres/
Dsmall_blas.h81 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()
[all …]
Ddense_normal_cholesky_solver.cc74 ConstColMajorMatrixRef Aref = A->matrix(); in SolveUsingEigen() local
85 lhs.selfadjointView<Eigen::Upper>().rankUpdate(Aref.transpose()); in SolveUsingEigen()
88 Vector rhs = Aref.transpose() * ConstVectorRef(b, num_rows); in SolveUsingEigen()
/external/clang/test/CodeGenCXX/
Dvisibility.cpp239 template <A&> struct Aref { struct
248 Aref<a>::foo(); in test()