Lines Matching refs:bottom
302 int bottom = first_nonopt; in exchange() local
334 while (top > middle && middle > bottom) in exchange()
336 if (top - middle > middle - bottom) in exchange()
339 int len = middle - bottom; in exchange()
345 tem = argv[bottom + i]; in exchange()
346 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
347 argv[top - (middle - bottom) + i] = tem; in exchange()
348 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
362 tem = argv[bottom + i]; in exchange()
363 argv[bottom + i] = argv[middle + i]; in exchange()
365 SWAP_FLAGS (bottom + i, middle + i); in exchange()
368 bottom += len; in exchange()