Lines Matching refs:cachehead
950 cache_head_t *cachehead; in reinit_cpu_list() local
962 for (cachehead = &cpuptr->mt_caches[0]; cachehead < in reinit_cpu_list()
963 &cpuptr->mt_caches[NUM_CACHES]; cachehead++) { in reinit_cpu_list()
964 for (thiscache = cachehead->mt_cache; thiscache != NULL; in reinit_cpu_list()
1011 cache_head_t *cachehead; in malloc_internal() local
1039 cachehead = &cpuptr->mt_caches[bucket]; in malloc_internal()
1042 thiscache = cachehead->mt_hint; in malloc_internal()
1049 thiscache = cachehead->mt_cache; in malloc_internal()
1050 hintcache = cachehead->mt_hint; in malloc_internal()
1075 thiscache->mt_next = cachehead->mt_cache; in malloc_internal()
1076 cachehead->mt_cache = thiscache; in malloc_internal()
1080 cachehead->mt_hint = thiscache; in malloc_internal()
1506 cache_head_t *cachehead; in malloc_prepare() local
1512 for (cachehead = &cpuptr->mt_caches[0]; in malloc_prepare()
1513 cachehead < &cpuptr->mt_caches[NUM_CACHES]; in malloc_prepare()
1514 cachehead++) { in malloc_prepare()
1515 for (thiscache = cachehead->mt_cache; in malloc_prepare()
1529 cache_head_t *cachehead; in malloc_release() local
1533 for (cachehead = &cpuptr->mt_caches[NUM_CACHES - 1]; in malloc_release()
1534 cachehead >= &cpuptr->mt_caches[0]; in malloc_release()
1535 cachehead--) { in malloc_release()
1536 for (thiscache = cachehead->mt_cache; in malloc_release()