Home
last modified time | relevance | path

Searched refs:m_cc (Results 1 – 2 of 2) sorted by relevance

/external/eigen/Eigen/src/SPQRSupport/
DSuiteSparseQRSupport.h79 cholmod_l_start(&m_cc);
85 cholmod_l_start(&m_cc);
92 cholmod_l_finish(&m_cc);
96 cholmod_l_free_sparse(&m_H, &m_cc);
97 cholmod_l_free_sparse(&m_cR, &m_cc);
98 cholmod_l_free_dense(&m_HTau, &m_cc);
127 &m_cR, &m_E, &m_H, &m_HPinv, &m_HTau, &m_cc);
206 return m_cc.SPQR_istat[4];
218 cholmod_common *cholmodCommon() const { return &m_cc; }
246 mutable cholmod_common m_cc; // Workspace and parameters
/external/libcxx/test/support/
Dcontainer_test_types.h248 ConstructController *m_cc; member
250 InAllocatorConstructGuard(ConstructController* cc) : m_cc(cc) { in InAllocatorConstructGuard()
251 if (m_cc) { in InAllocatorConstructGuard()
252 m_old = m_cc->isInAllocatorConstruct(); in InAllocatorConstructGuard()
253 m_cc->inAllocatorConstruct(true); in InAllocatorConstructGuard()
257 if (m_cc) m_cc->inAllocatorConstruct(m_old); in ~InAllocatorConstructGuard()