Searched refs:tablemax (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.2-release/lib/libc/stdio/
H A Dprintf-pos.c74 int tablemax; /* largest used index in table */ member in struct:typetable
91 types->tablemax = 0;
120 if (types->nextarg > types->tablemax)
121 types->tablemax = types->nextarg;
658 if (types->tablemax >= STATIC_ARG_TBL_SIZE) {
660 malloc (sizeof (union arg) * (types->tablemax + 1));
666 for (n = 1; n <= types->tablemax; n++) {
/freebsd-10.2-release/contrib/sendmail/libsm/
H A Dvfprintf.c840 int tablemax; /* largest used index in table */ local
848 (nextarg > tablemax) ? tablemax = nextarg : 0)
882 tablemax = 0;
1018 if (tablemax >= STATIC_ARG_TBL_SIZE)
1021 sm_malloc(sizeof(va_list) * (tablemax + 1));
1024 for (n = 1; n <= tablemax; n++)

Completed in 27 milliseconds