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

/fuchsia/zircon/kernel/object/
H A Dhandle.cpp33 // [29..kHandleGenerationShift]: Generation number
35 // [kHandleGenerationShift-1..0]: Index into handle_arena
41 constexpr uint32_t kHandleGenerationShift = log2_uint_floor(kMaxHandleCount); member in namespace:__anon92
42 static_assert(((3 << (kHandleGenerationShift - 1)) & kHandleGenerationMask) ==
43 1 << kHandleGenerationShift,
45 static_assert((kHandleGenerationMask >> kHandleGenerationShift) >= 255,
73 old_gen = (v & kHandleGenerationMask) >> kHandleGenerationShift;
76 (((old_gen + 1) << kHandleGenerationShift) & kHandleGenerationMask);

Completed in 71 milliseconds