Home
last modified time | relevance | path

Searched refs:s_topFree (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/cmd/mailx/
H A Dstralloc.c85 if (sp->s_topFree == NOSTR && (STRINGSIZE << index) >= s) in salloc()
93 if (sp->s_topFree == NOSTR) { in salloc()
95 sp->s_topFree = (char *) calloc(STRINGSIZE << index, in salloc()
97 if (sp->s_topFree == NOSTR) { in salloc()
102 sp->s_nextFree = sp->s_topFree; in salloc()
167 if (sp->s_topFree == NOSTR) in sreset()
169 sp->s_nextFree = sp->s_topFree; in sreset()
/illumos-gate/usr/src/cmd/mailx/hdr/
H A Ddef.h403 char *s_topFree; /* Beginning of this area */ member