Lines Matching refs:ALWAYS_INLINE
48 static ALWAYS_INLINE constexpr size_t BitIndexToWordIndex(uintptr_t offset) { in BitIndexToWordIndex()
53 static ALWAYS_INLINE constexpr T WordIndexToBitIndex(T word_index) { in WordIndexToBitIndex()
57 static ALWAYS_INLINE constexpr uintptr_t BitIndexToMask(uintptr_t bit_index) { in BitIndexToMask()
61 ALWAYS_INLINE bool SetBit(size_t bit_index) { in SetBit()
65 ALWAYS_INLINE bool ClearBit(size_t bit_index) { in ClearBit()
69 ALWAYS_INLINE bool TestBit(size_t bit_index) const;
72 ALWAYS_INLINE bool AtomicTestAndSetBit(size_t bit_index);
95 ALWAYS_INLINE void CheckValidBitIndex(size_t bit_index) const { in CheckValidBitIndex()
111 ALWAYS_INLINE bool ModifyBit(uintptr_t bit_index);
136 ALWAYS_INLINE uintptr_t CoverBegin() const { in CoverBegin()
141 ALWAYS_INLINE uintptr_t CoverEnd() const { in CoverEnd()
146 ALWAYS_INLINE uintptr_t AddrFromBitIndex(size_t bit_index) const { in AddrFromBitIndex()
153 ALWAYS_INLINE uintptr_t BitIndexFromAddr(uintptr_t addr) const { in BitIndexFromAddr()
158 ALWAYS_INLINE bool HasAddress(const uintptr_t addr) const { in HasAddress()
162 ALWAYS_INLINE bool Set(uintptr_t addr) { in Set()
166 ALWAYS_INLINE bool Clear(size_t addr) { in Clear()
170 ALWAYS_INLINE bool Test(size_t addr) const { in Test()
175 ALWAYS_INLINE bool AtomicTestAndSet(size_t addr) { in AtomicTestAndSet()