HomeSort by relevance Sort by last modified time
    Searched refs:CellInfo (Results 1 - 18 of 18) sorted by null

  /external/ceres-solver/internal/ceres/
block_random_access_matrix.h 55 // CellInfo object containing a pointer to an array which contains the
74 // CellInfo* cell = A->GetCell(row_block_id, col_block_id,
86 struct CellInfo {
87 CellInfo()
91 explicit CellInfo(double* ptr)
104 // a CellInfo with a pointer to the dense matrix containing it,
112 virtual CellInfo* GetCell(int row_block_id,
block_random_access_dense_matrix.h 66 virtual CellInfo* GetCell(int row_block_id,
90 scoped_array<CellInfo> cell_infos_;
block_random_access_diagonal_matrix.h 62 virtual CellInfo* GetCell(int row_block_id,
84 vector<CellInfo*> layout_;
block_random_access_dense_matrix.cc 53 cell_infos_.reset(new CellInfo[num_blocks * num_blocks]);
66 CellInfo* BlockRandomAccessDenseMatrix::GetCell(const int row_block_id,
block_random_access_sparse_matrix.h 67 virtual CellInfo* GetCell(int row_block_id,
97 typedef HashMap<long int, CellInfo* > LayoutType;
block_random_access_diagonal_matrix.cc 74 layout_.push_back(new CellInfo(values + pos));
91 CellInfo* BlockRandomAccessDiagonalMatrix::GetCell(int row_block_id,
block_random_access_dense_matrix_test.cc 57 CellInfo* cell =
87 CellInfo* cell = m.GetCell(
block_random_access_sparse_matrix.cc 92 new CellInfo(values + pos);
128 CellInfo* BlockRandomAccessSparseMatrix::GetCell(int row_block_id,
block_random_access_diagonal_matrix_test.cc 64 CellInfo* cell = m.GetCell(row_block_id, col_block_id,
block_random_access_sparse_matrix_test.cc 75 CellInfo* cell = m.GetCell(row_block_id, col_block_id,
schur_eliminator_impl.h 192 CellInfo* cell_info = lhs->GetCell(block_id, block_id,
534 CellInfo* cell_info = lhs->GetCell(block1, block2,
608 CellInfo* cell_info = lhs->GetCell(block1, block1,
627 CellInfo* cell_info = lhs->GetCell(block1, block2,
661 CellInfo* cell_info = lhs->GetCell(block1, block1,
680 CellInfo* cell_info = lhs->GetCell(block1, block2,
visibility_based_preconditioner.cc 412 CellInfo* cell_info = m_->GetCell(block1, block2,
  /external/chromium_org/third_party/sqlite/src/src/
btreeInt.h 447 typedef struct CellInfo CellInfo;
448 struct CellInfo {
491 CellInfo info; /* A parse of the cell we are pointing at */
btree.c 878 ** Parse a cell content block and fill in the CellInfo structure. There
889 CellInfo *pInfo /* Fill in this structure */
957 CellInfo *pInfo /* Fill in this structure */
974 ** the (CellInfo.nSize) value found by doing a full parse of the
977 CellInfo debuginfo;
    [all...]
  /external/chromium_org/net/disk_cache/blockfile/
index_table_v3.h 119 struct CellInfo { uint32 hash; Addr address; };
120 typedef std::vector<CellInfo> CellList;
index_table_v3_unittest.cc 283 disk_cache::CellInfo info = { hash, addr };
344 disk_cache::CellInfo info = { hash, addr };
485 disk_cache::CellInfo info = { hash, addr };
600 disk_cache::CellInfo info = { hash, addr };
634 disk_cache::CellInfo info = { hash, addr };
654 disk_cache::CellInfo info = { hash, addr };
index_table_v3.cc 18 using disk_cache::CellInfo;
248 CellInfo cell_info = { cell.hash(), cell.GetAddress() };
    [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]

Completed in 524 milliseconds