Lines Matching refs:top
304 int top = optind; in exchange() local
316 if (nonoption_flags_len > 0 && top >= nonoption_flags_max_len) in exchange()
320 char *new_str = malloc (top + 1); in exchange()
327 '\0', top + 1 - nonoption_flags_max_len); in exchange()
328 nonoption_flags_max_len = top + 1; in exchange()
334 while (top > middle && middle > bottom) in exchange()
336 if (top - middle > 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()
351 top -= len; in exchange()
356 int len = top - middle; in exchange()