Searched defs:arglst (Results 1 - 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Ddoprnt.c194 stva_list arglst[MAXARGS];/* array giving the approriate values local
197 * arglst[0] is the first argument
198 * arglst[1] is the second argument, etc.
399 _mkarglst(sformat, sargs, arglst);
403 args_width = arglst[val - 1];
405 args_width = arglst[MAXARGS - 1];
445 _mkarglst(sformat, sargs, arglst);
449 args_prec = arglst[val - 1];
451 args_prec = arglst[MAXARGS - 1];
473 _mkarglst(sformat, sargs, arglst);
1020 _mkarglst(char *fmt, stva_list args, stva_list arglst[]) argument
[all...]
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Ddoscan.c156 stva_list arglst[MAXARGS]; local
161 * arglst[0] is the first argument
162 * arglst[1] is the second argument,etc.
284 if (_mkarglst(sformat, sargs, arglst) != 0) {
291 args = arglst[len - 1];
293 args = arglst[MAXARGS - 1];
881 /* This function initializes arglst, to contain the appropriate */
890 _mkarglst(const wchar_t *fmt, stva_list args, stva_list arglst[]) argument
893 _mkarglst(const char *fmt, stva_list args, stva_list arglst[])
963 arglst[
[all...]
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Ddoprnt.c243 stva_list arglst[MAXARGS]; local
247 * arglst[0] is the first argument,
248 * arglst[1] is the second argument, etc.
371 _mkarglst(sformat, sargs, arglst);
387 targs = arglst[position - 1];
389 targs = arglst[MAXARGS - 1];
1064 * This function initializes arglst, to contain the appropriate va_list values
1068 _mkarglst(char *fmt, stva_list args, stva_list arglst[]) argument
1081 * and set arglst[] to the appropriate values.
1165 arglst[
[all...]
/illumos-gate/usr/src/lib/libc/port/print/
H A Ddoprnt.c569 stva_list arglst[MAXARGS]; /* array giving appropriate values */ local
572 /* arglst[0] is the first arg */
573 /* arglst[1] is the second arg, etc */
774 _wmkarglst(sformat, sargs, arglst, prflag);
776 _mkarglst(sformat, sargs, arglst, prflag);
793 targs = arglst[position - 1];
795 targs = arglst[MAXARGS - 1];
2238 * This function initializes arglst, to contain the appropriate va_list values
2258 _wmkarglst(wchar_t *fmt, stva_list args, stva_list arglst[], int prflag) argument
2261 _mkarglst(char *fmt, stva_list args, stva_list arglst[], in
[all...]

Completed in 53 milliseconds