Lines Matching defs:end
478 int start, end, mid;
485 * beginning or to the end of the table depending on the condition.
500 end = data->n_comp;
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
513 end = mid;
523 end = start;
526 * start <= end
527 * data->comp[start].ohm >= ohm >= data->comp[end].ohm
531 * start == end
532 * ohm >= data->comp[end].ohm
534 *i_low = end;
535 if (ohm == data->comp[end].ohm)
536 *i_high = end;
538 *i_high = end - 1;