Lines Matching defs:start
478 int start, end, mid;
499 start = 0;
501 while (start < end) {
502 mid = start + (end - start) / 2;
504 * start <= mid < end
505 * data->comp[start].ohm > ohm >= data->comp[end].ohm
509 * check again after updating start. Check it at the end instead
515 start = mid + 1;
517 * ohm >= data->comp[start].ohm might be true here,
518 * since we set start to mid + 1. In that case, we are
522 if (ohm >= data->comp[start].ohm)
523 end = start;
526 * start <= end
527 * data->comp[start].ohm >= ohm >= data->comp[end].ohm
531 * start == end