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

/illumos-gate/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 */
98 static int freeidx; /* index of free blocks in flist % FREESIZE */
206 freeidx = (freeidx + FREESIZE - 1) &
214 freeidx = (freeidx + FREESIZE - 1) &
914 flp = (char **)&(flist[FREESIZE]);

Completed in 55 milliseconds