Home | History | Annotate | Download | only in ceres

Lines Matching refs:row

200     // Add to the chunk until the first block in the row is
201 // different than the one in the first row for the chunk.
203 const CompressedRow& row = bs->rows[r];
204 if (row.cells.front().block_id != e_block_id) {
208 // Iterate over the blocks in the row, ignoring the first
210 for (int c = 1; c < row.cells.size(); ++c) {
211 const Cell& cell = row.cells[c];
228 const CompressedRow& row = bs->rows[r];
229 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
230 for (int i = 0; i < row.cells.size(); ++i) {
231 int r_block1_id = row.cells[i].block_id - num_eliminate_blocks;
232 for (int j = 0; j < row.cells.size(); ++j) {
233 int r_block2_id = row.cells[j].block_id - num_eliminate_blocks;