Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h124 size_type getSmallSize() const { in getSmallSize() function
134 return getSmallRawBits() & ~(~uintptr_t(0) << getSmallSize()); in getSmallBits()
138 setSmallRawBits((NewBits & ~(~uintptr_t(0) << getSmallSize())) | in setSmallBits()
139 (getSmallSize() << SmallNumDataBits)); in setSmallBits()
191 return isSmall() ? getSmallSize() == 0 : getPointer()->empty(); in empty()
196 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
218 return getSmallBits() == (uintptr_t(1) << getSmallSize()) - 1; in all()
253 if (count() == getSmallSize()) in find_first_unset()
264 if (count() == getSmallSize()) in find_last_unset()
269 Bits |= ~uintptr_t(0) << getSmallSize(); in find_last_unset()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DMetadata.h1104 static size_t getSmallSize(size_t NumOps, bool IsResizable, bool IsLarge) {
1111 getSmallSize(NumOps, isResizable(Storage), isLarge(NumOps))) +
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp675 SmallSize = getSmallSize(NumOps, IsResizable, IsLarge); in Header()