Searched refs:nargc (Results 1 – 3 of 3) sorted by relevance
/external/chromium_org/third_party/mesa/src/src/getopt/ |
D | getopt_long.c | 277 getopt_internal(int nargc, char * const *nargv, const char *options, in getopt_internal() argument 313 if (optind >= nargc) { /* end of argument vector */ in getopt_internal() 429 else if (++optind >= nargc) { /* no arg */ in getopt_internal() 450 if (++optind >= nargc) { /* no arg */ in getopt_internal() 473 getopt(int nargc, char * const *nargv, const char *options) in getopt() argument 484 return (getopt_internal(nargc, nargv, options, NULL, NULL, 0)); in getopt() 492 getopt_long(int nargc, char * const *nargv, const char *options, in getopt_long() argument 496 return (getopt_internal(nargc, nargv, options, long_options, idx, in getopt_long() 505 getopt_long_only(int nargc, char * const *nargv, const char *options, in getopt_long_only() argument 509 return (getopt_internal(nargc, nargv, options, long_options, idx, in getopt_long_only()
|
/external/mesa3d/src/getopt/ |
D | getopt_long.c | 277 getopt_internal(int nargc, char * const *nargv, const char *options, in getopt_internal() argument 313 if (optind >= nargc) { /* end of argument vector */ in getopt_internal() 429 else if (++optind >= nargc) { /* no arg */ in getopt_internal() 450 if (++optind >= nargc) { /* no arg */ in getopt_internal() 473 getopt(int nargc, char * const *nargv, const char *options) in getopt() argument 484 return (getopt_internal(nargc, nargv, options, NULL, NULL, 0)); in getopt() 492 getopt_long(int nargc, char * const *nargv, const char *options, in getopt_long() argument 496 return (getopt_internal(nargc, nargv, options, long_options, idx, in getopt_long() 505 getopt_long_only(int nargc, char * const *nargv, const char *options, in getopt_long_only() argument 509 return (getopt_internal(nargc, nargv, options, long_options, idx, in getopt_long_only()
|
/external/openssh/openbsd-compat/ |
D | getopt.c | 58 BSDgetopt(nargc, nargv, ostr) in BSDgetopt() argument 59 int nargc; in BSDgetopt() 72 if (BSDoptind >= nargc || *(place = nargv[BSDoptind]) != '-') { 105 else if (nargc <= ++BSDoptind) { /* no arg */
|