Home
last modified time | relevance | path

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

/xnu-8020.140.41/bsd/dev/dtrace/
H A Dblist.c127 bl->bl_root = (blmeta_t *)kalloc_data(sizeof(blmeta_t) * bl->bl_rootblks, Z_WAITOK); in blist_create()
139 blst_radix_init(bl->bl_root, bl->bl_radix, bl->bl_skip, blocks); in blist_create()
147 kfree_data(bl->bl_root, sizeof(blmeta_t) * bl->bl_rootblks); in blist_destroy()
164 blk = blst_leaf_alloc(bl->bl_root, 0, count); in blist_alloc()
166 blk = blst_meta_alloc(bl->bl_root, 0, count, in blist_alloc()
187 blst_leaf_free(bl->bl_root, blkno, count); in blist_free()
189 blst_meta_free(bl->bl_root, blkno, count, in blist_free()
214 blst_copy(save->bl_root, 0, save->bl_radix, save->bl_skip, newbl, count); in blist_resize()
235 blst_radix_print(bl->bl_root, 0, bl->bl_radix, bl->bl_skip, 4); in blist_print()
H A Dblist.h82 blmeta_t *bl_root; /* root of radix tree */ member