Lines Matching refs:bottom
319 int bottom = first_nonopt; in exchange() local
351 while (top > middle && middle > bottom) in exchange()
353 if (top - middle > middle - bottom) in exchange()
356 int len = middle - bottom; in exchange()
362 tem = argv[bottom + i]; in exchange()
363 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
364 argv[top - (middle - bottom) + i] = tem; in exchange()
365 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
379 tem = argv[bottom + i]; in exchange()
380 argv[bottom + i] = argv[middle + i]; in exchange()
382 SWAP_FLAGS (bottom + i, middle + i); in exchange()
385 bottom += len; in exchange()