Home | History | Annotate | Download | only in sanitizer_common

Lines Matching refs:mid

1142       uptr mid = (beg + end) / 2;  // Invariant: mid >= beg + 1
1143 if (p < reinterpret_cast<uptr>(chunks_[mid]))
1144 end = mid - 1; // We are not interested in chunks_[mid].
1146 beg = mid; // chunks_[mid] may still be what we want.