Symbol: nextarg
lib/libc/stdio/printf-pos.c
113
if (types->nextarg >= types->tablesize) {
lib/libc/stdio/printf-pos.c
117
if (types->nextarg > types->tablemax)
lib/libc/stdio/printf-pos.c
118
types->tablemax = types->nextarg;
lib/libc/stdio/printf-pos.c
132
types->table[types->nextarg++] = type;
lib/libc/stdio/printf-pos.c
143
types->table[types->nextarg++] = T_INTMAXT;
lib/libc/stdio/printf-pos.c
145
types->table[types->nextarg++] = T_SSIZET;
lib/libc/stdio/printf-pos.c
147
types->table[types->nextarg++] = T_PTRDIFFT;
lib/libc/stdio/printf-pos.c
149
types->table[types->nextarg++] = T_LLONG;
lib/libc/stdio/printf-pos.c
151
types->table[types->nextarg++] = T_LONG;
lib/libc/stdio/printf-pos.c
153
types->table[types->nextarg++] = T_INT;
lib/libc/stdio/printf-pos.c
164
types->table[types->nextarg++] = T_UINTMAXT;
lib/libc/stdio/printf-pos.c
166
types->table[types->nextarg++] = T_SIZET;
lib/libc/stdio/printf-pos.c
168
types->table[types->nextarg++] = T_SIZET;
lib/libc/stdio/printf-pos.c
170
types->table[types->nextarg++] = T_U_LLONG;
lib/libc/stdio/printf-pos.c
172
types->table[types->nextarg++] = T_U_LONG;
lib/libc/stdio/printf-pos.c
174
types->table[types->nextarg++] = T_U_INT;
lib/libc/stdio/printf-pos.c
194
int hold = types->nextarg;
lib/libc/stdio/printf-pos.c
195
types->nextarg = n2;
lib/libc/stdio/printf-pos.c
198
types->nextarg = hold;
lib/libc/stdio/printf-pos.c
220
int hold = types->nextarg;
lib/libc/stdio/printf-pos.c
221
types->nextarg = n2;
lib/libc/stdio/printf-pos.c
224
types->nextarg = hold;
lib/libc/stdio/printf-pos.c
299
types.nextarg = n;
lib/libc/stdio/printf-pos.c
487
types.nextarg = n;
lib/libc/stdio/printf-pos.c
626
if (newsize < types->nextarg + 1)
lib/libc/stdio/printf-pos.c
627
newsize = types->nextarg + 1;
lib/libc/stdio/printf-pos.c
72
int nextarg; /* 1-based argument index */
lib/libc/stdio/printf-pos.c
89
types->nextarg = 1;
lib/libc/stdio/vfprintf.c
359
int nextarg; /* 1-based argument index */
lib/libc/stdio/vfprintf.c
390
((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \
lib/libc/stdio/vfprintf.c
391
(nextarg++, va_arg(ap, type)))
lib/libc/stdio/vfprintf.c
431
int hold = nextarg; \
lib/libc/stdio/vfprintf.c
439
nextarg = n2; \
lib/libc/stdio/vfprintf.c
441
nextarg = hold; \
lib/libc/stdio/vfprintf.c
461
nextarg = 1;
lib/libc/stdio/vfprintf.c
561
nextarg = n;
lib/libc/stdio/vfwprintf.c
436
int nextarg; /* 1-based argument index */
lib/libc/stdio/vfwprintf.c
467
((argtable != NULL) ? *((type*)(&argtable[nextarg++])) : \
lib/libc/stdio/vfwprintf.c
468
(nextarg++, va_arg(ap, type)))
lib/libc/stdio/vfwprintf.c
508
int hold = nextarg; \
lib/libc/stdio/vfwprintf.c
516
nextarg = n2; \
lib/libc/stdio/vfwprintf.c
518
nextarg = hold; \
lib/libc/stdio/vfwprintf.c
532
nextarg = 1;
lib/libc/stdio/vfwprintf.c
629
nextarg = n;
lib/libc/stdio/xprintf.c
275
int nextarg;
lib/libc/stdio/xprintf.c
286
nextarg = 1;
lib/libc/stdio/xprintf.c
324
pi->get_prec = nextarg;
lib/libc/stdio/xprintf.c
325
argt[nextarg++] = PA_INT;
lib/libc/stdio/xprintf.c
344
pi->get_width = nextarg;
lib/libc/stdio/xprintf.c
345
argt[nextarg++] = PA_INT;
lib/libc/stdio/xprintf.c
373
if (nextarg > maxarg)
lib/libc/stdio/xprintf.c
374
maxarg = nextarg;
lib/libc/stdio/xprintf.c
375
nextarg = n;
lib/libc/stdio/xprintf.c
443
pi, __PRINTFMAXARG, &argt[nextarg]);
lib/libc/stdio/xprintf.c
445
pi->arg[0] = &args[nextarg];
lib/libc/stdio/xprintf.c
447
pi->arg[1] = &args[nextarg + 1];
lib/libc/stdio/xprintf.c
448
nextarg += ch;
lib/libc/stdio/xprintf.c
452
if (nextarg > maxarg)
lib/libc/stdio/xprintf.c
453
maxarg = nextarg;
sbin/restore/interactive.c
111
nextarg = NULL;
sbin/restore/interactive.c
307
if (nextarg != NULL)
sbin/restore/interactive.c
336
nextarg = cp;
sbin/restore/interactive.c
341
cp = copynext(nextarg, rawname);
sbin/restore/interactive.c
343
nextarg = NULL;
sbin/restore/interactive.c
345
nextarg = cp;
sbin/restore/interactive.c
54
static char *nextarg = NULL;
usr.bin/env/envopts.c
168
char *dest, **newargv, *newstr, **nextarg, **oldarg;
usr.bin/env/envopts.c
188
nextarg = newargv;
usr.bin/env/envopts.c
189
*nextarg++ = **origv;
usr.bin/env/envopts.c
218
bq_destlen = dest - *(nextarg - 1);
usr.bin/env/envopts.c
226
copystr = expand_vars(in_arg, (nextarg - 1),
usr.bin/env/envopts.c
243
bq_destlen = dest - *(nextarg - 1);
usr.bin/env/envopts.c
338
*nextarg++ = dest;
usr.bin/env/envopts.c
357
*nextarg = NULL;
usr.bin/env/envopts.c
360
bq_destlen, *(nextarg - 1), bq_src);
usr.bin/env/envopts.c
372
*nextarg++ = *oldarg;
usr.bin/env/envopts.c
373
*nextarg = NULL;
usr.bin/find/function.c
1017
fn = nextarg(option, argvp);
usr.bin/find/function.c
1044
nlinks = nextarg(option, argvp);
usr.bin/find/function.c
1101
pattern = nextarg(option, argvp);
usr.bin/find/function.c
1137
fn_or_tspec = nextarg(option, argvp);
usr.bin/find/function.c
1250
perm = nextarg(option, argvp);
usr.bin/find/function.c
1374
pattern = nextarg(option, argvp);
usr.bin/find/function.c
1427
size_str = nextarg(option, argvp);
usr.bin/find/function.c
1511
typestring = nextarg(option, argvp);
usr.bin/find/function.c
1572
username = nextarg(option, argvp);
usr.bin/find/function.c
267
nmins = nextarg(option, argvp);
usr.bin/find/function.c
312
value = nextarg(option, argvp);
usr.bin/find/function.c
338
dstr = nextarg(option, argvp);
usr.bin/find/function.c
472
ndepth = nextarg(option, argvp);
usr.bin/find/function.c
63
static char *nextarg(OPTION *, char ***);
usr.bin/find/function.c
761
flags_str = nextarg(option, argvp);
usr.bin/find/function.c
876
fsname = nextarg(option, argvp);
usr.bin/find/function.c
939
gname = nextarg(option, argvp);
usr.bin/find/function.c
995
inum_str = nextarg(option, argvp);
usr.bin/rpcgen/rpc_main.c
1035
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1046
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1061
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1066
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1078
goto nextarg;
usr.bin/rpcgen/rpc_main.c
1084
nextarg:
usr.sbin/kbdcontrol/kbdcontrol.c
1152
nextarg(argc, argv, &optind, 'f'));
usr.sbin/vidcontrol/vidcontrol.c
1128
font = nextarg(argc, argv, &optind, 'f', 0);