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

/freebsd-12-stable/lib/libc/stdio/
H A Dprintf-pos.c83 u_int tablemax; /* largest used index in table */ member in struct:typetable
100 types->tablemax = 0;
129 if (types->nextarg > types->tablemax)
130 types->tablemax = types->nextarg;
682 if (types->tablemax >= STATIC_ARG_TBL_SIZE) {
684 malloc (sizeof (union arg) * (types->tablemax + 1));
690 for (n = 1; n <= types->tablemax; n++) {
/freebsd-12-stable/contrib/sendmail/libsm/
H A Dvfprintf.c841 int tablemax; /* largest used index in table */ local
849 (nextarg > tablemax) ? tablemax = nextarg : 0)
883 tablemax = 0;
1019 if (tablemax >= STATIC_ARG_TBL_SIZE)
1022 sm_malloc(sizeof(va_list) * (tablemax + 1));
1025 for (n = 1; n <= tablemax; n++)

Completed in 107 milliseconds