Searched refs:slotIndex (Results 1 - 5 of 5) sorted by relevance

/haiku/src/libs/compat/freebsd_network/
H A Dunit.cpp83 radix_slot_t slotIndex; local
86 slotIndex = radix_bitmap_alloc(idStore->idBuffer, 1);
87 if (slotIndex != RADIX_SLOT_NONE)
88 id = slotIndex + idStore->idBias;
104 uint32 slotIndex = (int32)identity - idStore->idBias; local
105 KASSERT(slotIndex >= 0, ("ID-Store: %s(%p, %u): second "
108 radix_bitmap_dealloc(idStore->idBuffer, slotIndex, 1);
/haiku/src/system/kernel/util/
H A DRadixBitmap.cpp197 radix_leaf_alloc(radix_node *leaf, radix_slot_t slotIndex, int32 count)
206 return (slotIndex + j);
220 radix_node_alloc(radix_node *node, radix_slot_t slotIndex, int32 count,
233 addr = radix_leaf_alloc(&node[i], slotIndex, count);
235 addr = radix_node_alloc(&node[i], slotIndex, count, radix,
245 slotIndex += radix;
273 radix_leaf_dealloc(radix_node *leaf, radix_slot_t slotIndex, uint32 count)
275 uint32 n = slotIndex & (BITMAP_RADIX - 1);
285 radix_node_dealloc(radix_node *node, radix_slot_t slotIndex, uint32 count,
293 uint32 i = (slotIndex
[all...]
/haiku/headers/private/kernel/util/
H A DRadixBitmap.h70 extern void radix_bitmap_dealloc(radix_bitmap *bmp, radix_slot_t slotIndex,
/haiku/src/system/kernel/vm/
H A DVMAnonymousCache.cpp317 find_swap_file(swap_addr_t slotIndex) argument
321 if (slotIndex >= swapFile->first_slot
322 && slotIndex < swapFile->last_slot) {
328 slotIndex);
334 swap_slot_dealloc(swap_addr_t slotIndex, uint32 count) argument
336 if (slotIndex == SWAP_SLOT_NONE)
340 swap_file* swapFile = find_swap_file(slotIndex);
341 slotIndex -= swapFile->first_slot;
342 radix_bitmap_dealloc(swapFile->bmp, slotIndex, count);
409 void SetTo(page_num_t pageIndex, swap_addr_t slotIndex, boo argument
543 swap_addr_t slotIndex = swapBlock->swap_slots[blockIndex]; local
679 swap_addr_t slotIndex local
773 swap_addr_t slotIndex = _SwapBlockGetAddress(pageIndex + j); local
807 swap_addr_t slotIndex = _SwapBlockGetAddress(pageIndex + totalPages); local
835 swap_addr_t slotIndex; local
895 swap_addr_t slotIndex = _SwapBlockGetAddress(pageIndex); local
1060 swap_addr_t slotIndex = startSlotIndex + i; local
1133 swap_addr_t slotIndex = SWAP_SLOT_NONE; local
[all...]
H A DVMAnonymousCache.h87 swap_addr_t slotIndex, uint32 count);

Completed in 49 milliseconds