Lines Matching refs:bottom
174 int bottom = d->__first_nonopt; in exchange() local
206 while (top > middle && middle > bottom) in exchange()
208 if (top - middle > middle - bottom) in exchange()
211 int len = middle - bottom; in exchange()
217 tem = argv[bottom + i]; in exchange()
218 argv[bottom + i] = argv[top - (middle - bottom) + i]; in exchange()
219 argv[top - (middle - bottom) + i] = tem; in exchange()
220 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); in exchange()
234 tem = argv[bottom + i]; in exchange()
235 argv[bottom + i] = argv[middle + i]; in exchange()
237 SWAP_FLAGS (bottom + i, middle + i); in exchange()
240 bottom += len; in exchange()