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

/osnet-11/usr/src/lib/libc/port/gen/
H A Dmalloc.c92 #define FREESIZE (1<<5) /* size for preserving free blocks until next malloc */ macro
93 #define FREEMASK FREESIZE-1
95 static void *flist[FREESIZE]; /* list of blocks to be freed on next malloc */
96 static int freeidx; /* index of free blocks in flist % FREESIZE */
204 freeidx = (freeidx + FREESIZE - 1) &
212 freeidx = (freeidx + FREESIZE - 1) &
918 flp = (char **)&(flist[FREESIZE]);

Completed in 15 milliseconds