Lines Matching refs:middle
303 int middle = last_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()
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()
356 int len = top - middle; in exchange()
363 argv[bottom + i] = argv[middle + i]; in exchange()
364 argv[middle + i] = tem; in exchange()
365 SWAP_FLAGS (bottom + i, middle + i); in exchange()