Home | History | Annotate | Download | only in ceres

Lines Matching full:offsets

201   // Run a cumulative sum on the histogram, to obtain offsets to the start of
204 vector<int> offsets(num_eliminate_blocks + 1);
207 offsets.begin());
208 CHECK_EQ(offsets.back(), residual_blocks->size())
221 // residual blocks. This loop uses the offsets as counters; subtracting one
231 offsets[bucket]--;
234 CHECK(reordered_residual_blocks[offsets[bucket]] == NULL)
238 reordered_residual_blocks[offsets[bucket]] = (*residual_blocks)[i];
241 // Sanity check #1: The difference in bucket offsets should match the
244 CHECK_EQ(residual_blocks_per_e_block[i], offsets[i + 1] - offsets[i])
286 // Set the offsets and index for CreateJacobianSparsityTranspose.
401 // Set the offsets and index for CreateJacobianSparsityTranspose.