Lines Matching refs:ct_heap
520 ASSERT(ct->ct_heap == NULL); in callout_heap_init()
525 ct->ct_heap = kmem_alloc(size, KM_SLEEP); in callout_heap_init()
574 bcopy(ct->ct_heap, heap, osize); in callout_heap_expand()
575 kmem_free(ct->ct_heap, osize); in callout_heap_expand()
576 ct->ct_heap = heap; in callout_heap_expand()
601 heap = ct->ct_heap; in callout_upheap()
647 ct->ct_heap[ct->ct_heap_num].ch_expiration = cl->cl_expiration; in callout_heap_insert()
648 ct->ct_heap[ct->ct_heap_num].ch_list = cl; in callout_heap_insert()
678 heap = ct->ct_heap; in callout_downheap()
767 heap = ct->ct_heap; in callout_heap_delete()
875 heap = ct->ct_heap; in callout_heap_process()
2007 if (ct->ct_heap == NULL) { in callout_cpu_online()