Lines Matching defs:bottom
314 int bottom = first_nonopt;
346 while (top > middle && middle > bottom)
348 if (top - middle > middle - bottom)
351 int len = middle - bottom;
357 tem = argv[bottom + i];
358 argv[bottom + i] = argv[top - (middle - bottom) + i];
359 argv[top - (middle - bottom) + i] = tem;
360 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
362 /* Exclude the moved bottom segment from further swapping. */
371 /* Swap it with the bottom part of the bottom segment. */
374 tem = argv[bottom + i];
375 argv[bottom + i] = argv[middle + i];
377 SWAP_FLAGS (bottom + i, middle + i);
380 bottom += len;