Lines Matching refs:cache_t
118 static void create_cache(cache_t *, size_t bufsize, uint_t hunks);
126 static void reinit_cache(cache_t *);
253 cache_t *cacheptr; in realloc()
278 cacheptr = (cache_t *)*(uintptr_t *)mem; in realloc()
321 cacheptr = (cache_t *)*(uintptr_t *)mem; in realloc()
359 cache_t *cacheptr; in free()
411 cacheptr = (cache_t *)*(uintptr_t *)mem; in free()
896 create_cache(cache_t *cp, size_t size, uint_t chunksize) in create_cache()
902 cp->mt_freelist = ((caddr_t)cp + sizeof (cache_t)); in create_cache()
903 cp->mt_span = chunksize * HUNKSIZE - sizeof (cache_t); in create_cache()
949 cache_t *thiscache; in reinit_cpu_list()
983 reinit_cache(cache_t *thiscache) in reinit_cache()
1012 cache_t *thiscache, *hintcache; in malloc_internal()
1065 thiscache = (cache_t *)morecore(thisrequest * HUNKSIZE); in malloc_internal()
1067 if (thiscache == (cache_t *)-1) { in malloc_internal()
1507 cache_t *thiscache; in malloc_prepare()
1530 cache_t *thiscache; in malloc_release()