Lines Matching defs:end
414 int start, end, mid;
421 * beginning or to the end of the table depending on the condition.
436 end = data->n_comp;
437 while (start < end) {
438 mid = start + (end - start) / 2;
440 * start <= mid < end
441 * data->comp[start].ohm > ohm >= data->comp[end].ohm
445 * check again after updating start. Check it at the end instead
449 end = mid;
459 end = start;
462 * start <= end
463 * data->comp[start].ohm >= ohm >= data->comp[end].ohm
467 * start == end
468 * ohm >= data->comp[end].ohm
470 *i_low = end;
471 if (ohm == data->comp[end].ohm)
472 *i_high = end;
474 *i_high = end - 1;