Searched defs:typelst (Results 1 - 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/ |
H A D | doprnt.c | 1026 enum types typelst[MAXARGS], curtype; local 1031 * 2. walk through fmt putting arg types in typelst[]. 1032 * 3. walk through args using va_arg(args.ap, typelst[n]) 1037 (void)memset((void *)typelst, 0, sizeof(typelst)); 1096 typelst[curargno] = curtype; 1110 if (typelst[n] == 0) 1111 typelst[n] = INT; 1113 switch (typelst[n])
|
/illumos-gate/usr/src/ucblib/libucb/port/stdio/ |
H A D | doprnt.c | 1074 enum types typelst[MAXARGS], curtype; local 1079 * 2. walk through fmt putting arg types in typelst[]. 1080 * 3. walk through args using va_arg(args.ap, typelst[n]) 1085 (void) memset((void *)typelst, 0, sizeof (typelst)); 1117 typelst[targno] = INT; 1153 typelst[curargno] = curtype; 1166 if (typelst[n] == 0) 1167 typelst[n] = INT; 1169 switch (typelst[ [all...] |
/illumos-gate/usr/src/lib/libc/port/print/ |
H A D | doprnt.c | 2273 enum types typelst[MAXARGS], curtype; local 2279 * 2. walk through fmt putting arg types in typelst[]. 2280 * 3. walk through args using va_arg(args.ap, typelst[n]) 2285 (void) memset((void *) typelst, 0, sizeof (typelst)); 2349 typelst[targno] = INT; 2395 typelst[curargno] = curtype; 2408 if (typelst[n] == 0) 2409 typelst[n] = INT; 2411 switch (typelst[ [all...] |
Completed in 66 milliseconds