Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libmtmalloc/common/
H A Dmtmalloc.c253 cache_t *cacheptr; in realloc() local
278 cacheptr = (cache_t *)*(uintptr_t *)mem; in realloc()
279 if (bytes <= (cacheptr->mt_size - OVERHEAD)) in realloc()
321 cacheptr = (cache_t *)*(uintptr_t *)mem; in realloc()
324 MIN(cacheptr->mt_size - OVERHEAD - shift, bytes)); in realloc()
359 cache_t *cacheptr; in free() local
411 cacheptr = (cache_t *)*(uintptr_t *)mem; in free()
412 freeblocks = cacheptr->mt_freelist; in free()
420 offset = mem - cacheptr->mt_arena; in free()
426 i = offset / cacheptr->mt_size; in free()
[all …]