Home | History | Annotate | Download | only in ceres

Lines Matching refs:row

51   // Decode the row structure.
54 const CompressedRowProto &row = proto.rows(i);
55 block_structure->rows[i].block.size = row.block().size();
56 block_structure->rows[i].block.position = row.block().position();
58 // Copy the cells within the row.
59 block_structure->rows[i].cells.resize(row.cells_size());
60 for (int j = 0; j < row.cells_size(); ++j) {
61 const CellProto &cell = row.cells(j);
76 // Encode the row structure.
78 CompressedRowProto *row = proto->add_rows();
79 BlockProto *block = row->mutable_block();
83 CellProto *cell = row->add_cells();