Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h133 uintptr_t getSmallBits() const { in getSmallBits() function
211 return getSmallBits() != 0; in any()
225 return getSmallBits() == 0; in none()
490 return (getSmallBits() & RHS.getSmallBits()) != 0; in anyCommon()
505 return getSmallBits() == RHS.getSmallBits();
526 setSmallBits(getSmallBits() & RHS.getSmallBits());
542 setSmallBits(getSmallBits() & ~RHS.getSmallBits()); in reset()
556 return (getSmallBits() & ~RHS.getSmallBits()) != 0; in test()
575 setSmallBits(getSmallBits() | RHS.getSmallBits());
588 setSmallBits(getSmallBits() ^ RHS.getSmallBits());
[all …]