Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libc/port/gen/
H A Dmalloc.c94 #define FREESIZE (1<<5) /* size for preserving free blocks until next malloc */ macro
95 #define FREEMASK FREESIZE-1
97 static void *flist[FREESIZE]; /* list of blocks to be freed on next malloc */
206 freeidx = (freeidx + FREESIZE - 1) & in _malloc_unlocked()
214 freeidx = (freeidx + FREESIZE - 1) & in _malloc_unlocked()
914 flp = (char **)&(flist[FREESIZE]); in cleanfree()