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

/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DSmallBitVector.h116 size_t getSmallSize() const { function in class:llvm::SmallBitVector
126 return getSmallRawBits() & ~(~uintptr_t(0) << getSmallSize());
130 setSmallRawBits((NewBits & ~(~uintptr_t(0) << getSmallSize())) |
131 (getSmallSize() << SmallNumDataBits));
162 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
167 return isSmall() ? getSmallSize() : getPointer()->size();
193 return getSmallBits() == (uintptr_t(1) << getSmallSize()) - 1;
227 if (Bits == 0 || Prev + 1 >= getSmallSize())
250 uintptr_t NewBits = t ? ~uintptr_t(0) << getSmallSize() : 0;
256 for (size_t i = 0, e = getSmallSize();
[all...]
/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h120 size_t getSmallSize() const { function in class:llvm::SmallBitVector
130 return getSmallRawBits() & ~(~uintptr_t(0) << getSmallSize());
134 setSmallRawBits((NewBits & ~(~uintptr_t(0) << getSmallSize())) |
135 (getSmallSize() << SmallNumDataBits));
170 return isSmall() ? getSmallSize() == 0 : getPointer()->empty();
175 return isSmall() ? getSmallSize() : getPointer()->size();
197 return getSmallBits() == (uintptr_t(1) << getSmallSize()) - 1;
226 if (Bits == 0 || Prev + 1 >= getSmallSize())
245 uintptr_t NewBits = t ? ~uintptr_t(0) << getSmallSize() : 0;
251 for (size_t i = 0, e = getSmallSize();
[all...]

Completed in 63 milliseconds