Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/ADT/
H A DSmallBitVector.h124 size_type getSmallSize() const { in getSmallSize() function
139 (getSmallSize() << SmallNumDataBits)); in setSmallBits()
196 return isSmall() ? getSmallSize() : getPointer()->size(); in size()
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()
282 if (Bits == 0 || Prev + 1 >= getSmallSize()) in find_next()
297 Bits |= ~uintptr_t(0) << getSmallSize(); in find_next_unset()
299 if (Bits == ~uintptr_t(0) || Prev + 1 >= getSmallSize()) in find_next_unset()
342 for (size_type I = 0, E = getSmallSize(); I != E; ++I)
[all …]
/llvm-project-15.0.7/llvm/include/llvm/IR/
H A DMetadata.h979 static size_t getSmallSize(size_t NumOps, bool IsResizable, bool IsLarge) {
986 getSmallSize(NumOps, isResizable(Storage), isLarge(NumOps))) +
/llvm-project-15.0.7/llvm/lib/IR/
H A DMetadata.cpp572 SmallSize = getSmallSize(NumOps, IsResizable, IsLarge); in Header()