Home | History | Annotate | Download | only in libiberty

Lines Matching defs:last_nonopt

254    `last_nonopt' is the index after the last of them.  */
257 static int last_nonopt;
300 One subsequence is elements [first_nonopt,last_nonopt)
302 The other is elements [last_nonopt,optind), which contains all
305 `first_nonopt' and `last_nonopt' are relocated so that they describe
316 int middle = last_nonopt;
387 first_nonopt += (optind - last_nonopt);
388 last_nonopt = optind;
405 first_nonopt = last_nonopt = optind;
549 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
551 if (last_nonopt > optind)
552 last_nonopt = optind;
561 if (first_nonopt != last_nonopt && last_nonopt != optind)
563 else if (last_nonopt != optind)
571 last_nonopt = optind;
583 if (first_nonopt != last_nonopt && last_nonopt != optind)
585 else if (first_nonopt == last_nonopt)
587 last_nonopt = argc;
599 if (first_nonopt != last_nonopt)