Lines Matching full:right
286 size_t right = left;
287 DCHECK_LT(right, left + num_regs)
289 while (right < left + num_regs) {
290 if (regions_[right].IsFree()) {
291 ++right;
298 // right points to the one region past the last free region.
299 DCHECK_EQ(left + num_regs, right);
305 for (size_t p = left + 1; p < right; ++p) {
318 // right points to the non-free region. Start with the one after it.
319 left = right + 1;