Symbol: radix_slot_t
headers/private/kernel/util/RadixBitmap.h
54
radix_slot_t free_slots; // # of free slots
headers/private/kernel/util/RadixBitmap.h
55
radix_slot_t radix; // coverage radix
headers/private/kernel/util/RadixBitmap.h
56
radix_slot_t skip; // starting skip
headers/private/kernel/util/RadixBitmap.h
58
radix_slot_t root_size; // size of the array(# of nodes in the tree)
headers/private/kernel/util/RadixBitmap.h
62
#define BITMAP_RADIX (sizeof(radix_slot_t) * 8)
headers/private/kernel/util/RadixBitmap.h
65
#define RADIX_SLOT_NONE ((radix_slot_t)-1)
headers/private/kernel/util/RadixBitmap.h
69
extern radix_slot_t radix_bitmap_alloc(radix_bitmap *bmp, uint32 count);
headers/private/kernel/util/RadixBitmap.h
70
extern void radix_bitmap_dealloc(radix_bitmap *bmp, radix_slot_t slotIndex,
src/libs/compat/freebsd_network/unit.cpp
83
radix_slot_t slotIndex;
src/system/kernel/util/RadixBitmap.cpp
196
static radix_slot_t
src/system/kernel/util/RadixBitmap.cpp
197
radix_leaf_alloc(radix_node *leaf, radix_slot_t slotIndex, int32 count)
src/system/kernel/util/RadixBitmap.cpp
219
static radix_slot_t
src/system/kernel/util/RadixBitmap.cpp
220
radix_node_alloc(radix_node *node, radix_slot_t slotIndex, int32 count,
src/system/kernel/util/RadixBitmap.cpp
231
radix_slot_t addr = RADIX_SLOT_NONE;
src/system/kernel/util/RadixBitmap.cpp
255
radix_slot_t
src/system/kernel/util/RadixBitmap.cpp
258
radix_slot_t addr = RADIX_SLOT_NONE;
src/system/kernel/util/RadixBitmap.cpp
273
radix_leaf_dealloc(radix_node *leaf, radix_slot_t slotIndex, uint32 count)
src/system/kernel/util/RadixBitmap.cpp
285
radix_node_dealloc(radix_node *node, radix_slot_t slotIndex, uint32 count,
src/system/kernel/util/RadixBitmap.cpp
286
uint32 radix, uint32 skip, radix_slot_t index)
src/system/kernel/util/RadixBitmap.cpp
320
radix_bitmap_dealloc(radix_bitmap *bmp, radix_slot_t slotIndex, uint32 count)