Home | History | Annotate | Download | only in common

Lines Matching defs:hi

448     int32_t hi = len - 1;
449 if (lo >= hi || c >= list[hi-1])
450 return hi;
452 // invariant: c < list[hi]
454 int32_t i = (lo + hi) >> 1;
458 hi = i;
463 return hi;