Lines Matching refs:row
203 // Add to the chunk until the first block in the row is
204 // different than the one in the first row for the chunk.
206 const CompressedRow& row = bs->rows[r];
207 if (row.cells.front().block_id != e_block_id) {
211 // Iterate over the blocks in the row, ignoring the first
213 for (int c = 1; c < row.cells.size(); ++c) {
214 const Cell& cell = row.cells[c];
231 const CompressedRow& row = bs->rows[r];
232 CHECK_GE(row.cells.front().block_id, num_eliminate_blocks);
233 for (int i = 0; i < row.cells.size(); ++i) {
234 int r_block1_id = row.cells[i].block_id - num_eliminate_blocks;
235 for (int j = 0; j < row.cells.size(); ++j) {
236 int r_block2_id = row.cells[j].block_id - num_eliminate_blocks;