Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libmtmalloc/common/
H A Dmtmalloc.c412 freeblocks = cacheptr->mt_freelist; in free()
902 cp->mt_freelist = ((caddr_t)cp + sizeof (cache_t)); in create_cache()
921 cp->mt_arena = (caddr_t)ALIGN(cp->mt_freelist + 8, 8); in create_cache()
926 *(cp->mt_freelist) = mask; in create_cache()
928 cp->mt_arena = (caddr_t)ALIGN((caddr_t)cp->mt_freelist + in create_cache()
931 nblocks = (uintptr_t)((caddr_t)cp->mt_freelist + in create_cache()
935 (void) memset(cp->mt_freelist, 0xff, nblocks >> 3); in create_cache()
989 freeblocks = (uint32_t *)thiscache->mt_freelist; in reinit_cache()
995 (uint32_t *)thiscache->mt_freelist) in reinit_cache()
1085 freeblocks = (uint32_t *)thiscache->mt_freelist; in malloc_internal()
[all …]
H A Dmtmalloc_impl.h44 caddr_t mt_freelist; /* free block bit mask */ member