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

/illumos-gate/usr/src/cmd/backup/restore/
H A Dsymtab.c479 * Entries are allocated in STRTBLINCR sized pieces so that names
480 * of similar lengths can use the same entry. The value of STRTBLINCR
494 #define STRTBLINCR ((size_t)sizeof (struct strhdr)) macro
495 #define allocsize(size) (((size) + 2 + STRTBLINCR - 1) & ~(STRTBLINCR - 1))
497 static struct strhdr strtblhdr[allocsize(MAXCOMPLEXLEN) / STRTBLINCR];
521 np = strtblhdr[as / STRTBLINCR].next;
523 strtblhdr[as / STRTBLINCR].next = np->next;
552 tp = &strtblhdr[allocsize(strlen(name)) / STRTBLINCR];

Completed in 44 milliseconds