Home
last modified time | relevance | path

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

/xnu-8020.101.4/bsd/kern/
H A Dmcache.c514 ccp->cc_pfilled->bkt_next = bkt_list; in mcache_alloc_ext()
517 if (bkt->bkt_next == NULL) { in mcache_alloc_ext()
530 ccp->cc_filled->bkt_next = bkt_list; in mcache_alloc_ext()
806 ccp->cc_pfilled->bkt_next = bkt_list; in mcache_free_ext()
809 if (bkt->bkt_next == NULL) { in mcache_free_ext()
822 ccp->cc_filled->bkt_next = bkt_list; in mcache_free_ext()
868 ASSERT(bkt->bkt_next == NULL); in mcache_free_ext()
1084 if (__probable(bkt->bkt_next != NULL)) { in mcache_cpu_batch_refill()
1085 ccp->cc_pfilled = bkt->bkt_next; in mcache_cpu_batch_refill()
1087 bkt->bkt_next = NULL; in mcache_cpu_batch_refill()
[all …]
/xnu-8020.101.4/bsd/sys/
H A Dmcache.h248 void *bkt_next; /* next bucket in list */ member