Home
last modified time | relevance | path

Searched refs:getSmallSize (Results 1 – 1 of 1) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h131 return getSmallRawBits() & ~(~uintptr_t(0) << getSmallSize()); in getSmallBits()
136 (getSmallSize() << SmallNumDataBits)); in setSmallBits()
193 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
250 if (count() == getSmallSize()) in find_first_unset()
261 if (count() == getSmallSize()) in find_last_unset()
266 Bits |= ~uintptr_t(0) << getSmallSize(); in find_last_unset()
279 if (Bits == 0 || Prev + 1 >= getSmallSize()) in find_next()
294 Bits |= ~uintptr_t(0) << getSmallSize(); in find_next_unset()
296 if (Bits == ~uintptr_t(0) || Prev + 1 >= getSmallSize()) in find_next_unset()
339 for (size_t i = 0, e = getSmallSize(); i != e; ++i)
[all …]