Home | History | Annotate | Download | only in src

Lines Matching refs:high

2654   int high = array->number_of_entries() - 1;
2656 int limit = high;
2658 DCHECK(low <= high);
2660 while (low != high) {
2661 int mid = low + (high - low) / 2;
2666 high = mid;