Home | History | Annotate | Download | only in cups

Lines Matching defs:left

1201   int	left,				/* Left side of search */
1243 left = 0;
1249 * Start wih previous on left side...
1252 left = prev;
1262 left = 0;
1268 current = (left + right) / 2;
1271 DEBUG_printf(("9cups_array_find: left=%d, right=%d, current=%d, diff=%d",
1272 left, right, current, diff));
1279 left = current;
1281 while ((right - left) > 1);
1289 if ((diff = (*(a->compare))(e, a->elements[left], a->data)) <= 0)
1290 current = left;