Lines Matching refs:ALWAYS_INLINE
47 static ALWAYS_INLINE constexpr size_t BitIndexToWordIndex(uintptr_t offset) { in BitIndexToWordIndex()
52 static ALWAYS_INLINE constexpr T WordIndexToBitIndex(T word_index) { in WordIndexToBitIndex()
56 static ALWAYS_INLINE constexpr uintptr_t BitIndexToMask(uintptr_t bit_index) { in BitIndexToMask()
60 ALWAYS_INLINE bool SetBit(size_t bit_index) { in SetBit()
64 ALWAYS_INLINE bool ClearBit(size_t bit_index) { in ClearBit()
68 ALWAYS_INLINE bool TestBit(size_t bit_index) const;
71 ALWAYS_INLINE bool AtomicTestAndSetBit(size_t bit_index);
94 ALWAYS_INLINE void CheckValidBitIndex(size_t bit_index) const { in CheckValidBitIndex()
110 ALWAYS_INLINE bool ModifyBit(uintptr_t bit_index);
135 ALWAYS_INLINE uintptr_t CoverBegin() const { in CoverBegin()
140 ALWAYS_INLINE uintptr_t CoverEnd() const { in CoverEnd()
145 ALWAYS_INLINE uintptr_t AddrFromBitIndex(size_t bit_index) const { in AddrFromBitIndex()
152 ALWAYS_INLINE uintptr_t BitIndexFromAddr(uintptr_t addr) const { in BitIndexFromAddr()
157 ALWAYS_INLINE bool HasAddress(const uintptr_t addr) const { in HasAddress()
161 ALWAYS_INLINE bool Set(uintptr_t addr) { in Set()
165 ALWAYS_INLINE bool Clear(size_t addr) { in Clear()
169 ALWAYS_INLINE bool Test(size_t addr) const { in Test()
174 ALWAYS_INLINE bool AtomicTestAndSet(size_t addr) { in AtomicTestAndSet()