Home | History | Annotate | Download | only in libiberty

Lines Matching defs:last_nonopt

260    `last_nonopt' is the index after the last of them.  */
263 static int last_nonopt;
306 One subsequence is elements [first_nonopt,last_nonopt)
308 The other is elements [last_nonopt,optind), which contains all
311 `first_nonopt' and `last_nonopt' are relocated so that they describe
322 int middle = last_nonopt;
393 first_nonopt += (optind - last_nonopt);
394 last_nonopt = optind;
411 first_nonopt = last_nonopt = optind;
555 /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been
557 if (last_nonopt > optind)
558 last_nonopt = optind;
567 if (first_nonopt != last_nonopt && last_nonopt != optind)
569 else if (last_nonopt != optind)
577 last_nonopt = optind;
589 if (first_nonopt != last_nonopt && last_nonopt != optind)
591 else if (first_nonopt == last_nonopt)
593 last_nonopt = argc;
605 if (first_nonopt != last_nonopt)