Searched refs:first_nonopt (Results 1 - 3 of 3) sorted by relevance

/external/grub/lib/
H A Dgetopt.c251 been skipped. `first_nonopt' is the index in ARGV of the first of them; variable
254 static int first_nonopt;
298 One subsequence is elements [first_nonopt,last_nonopt)
303 `first_nonopt' and `last_nonopt' are relocated so that they describe
314 int bottom = first_nonopt;
386 first_nonopt += (optind - last_nonopt);
405 first_nonopt = last_nonopt = optind;
557 if (first_nonopt > optind)
558 first_nonopt = optind;
565 if (first_nonopt !
[all...]
/external/chromium/sdch/open-vcdiff/src/
H A Dgflags.cc988 int first_nonopt = *argc; // for non-options moved to the end local
991 for (int i = 1; i < first_nonopt; i++) {
999 first_nonopt--; // we've been pushed onto the stack
1009 first_nonopt = i+1;
1028 if (i+1 >= first_nonopt) {
1068 (*argv)[first_nonopt-1] = (*argv)[0];
1069 (*argv) += (first_nonopt-1);
1070 (*argc) -= (first_nonopt-1);
1071 first_nonopt = 1; // because we still don't count argv[0]
1076 return first_nonopt;
[all...]
/external/open-vcdiff/gflags/src/
H A Dgflags.cc988 int first_nonopt = *argc; // for non-options moved to the end local
991 for (int i = 1; i < first_nonopt; i++) {
999 first_nonopt--; // we've been pushed onto the stack
1009 first_nonopt = i+1;
1028 if (i+1 >= first_nonopt) {
1068 (*argv)[first_nonopt-1] = (*argv)[0];
1069 (*argv) += (first_nonopt-1);
1070 (*argc) -= (first_nonopt-1);
1071 first_nonopt = 1; // because we still don't count argv[0]
1076 return first_nonopt;
[all...]

Completed in 200 milliseconds