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

/freebsd-10.0-release/sbin/restore/
H A Dsymtab.c361 * Entries are allocated in STRTBLINCR sized pieces so that names
362 * of similar lengths can use the same entry. The value of STRTBLINCR
374 #define STRTBLINCR (sizeof(struct strhdr)) macro
375 #define allocsize(size) (((size) + 1 + STRTBLINCR - 1) & ~(STRTBLINCR - 1))
377 static struct strhdr strtblhdr[allocsize(NAME_MAX) / STRTBLINCR];
393 np = strtblhdr[len / STRTBLINCR].next;
395 strtblhdr[len / STRTBLINCR].next = np->next;
415 tp = &strtblhdr[strlen(name) / STRTBLINCR];

Completed in 73 milliseconds