Home | History | Annotate | Download | only in ADT

Lines Matching refs:getSmallBits

131     setSmallRawBits(getSmallBits() | (Size << SmallNumDataBits));
135 uintptr_t getSmallBits() const {
202 uintptr_t Bits = getSmallBits();
211 return getSmallBits() != 0;
218 return getSmallBits() == (uintptr_t(1) << getSmallSize()) - 1;
225 return getSmallBits() == 0;
232 uintptr_t Bits = getSmallBits();
242 uintptr_t Bits = getSmallBits();
256 uintptr_t Bits = getSmallBits();
267 uintptr_t Bits = getSmallBits();
277 uintptr_t Bits = getSmallBits();
292 uintptr_t Bits = getSmallBits();
312 uintptr_t Bits = getSmallBits();
336 setSmallBits(NewBits | getSmallBits());
339 uintptr_t OldBits = getSmallBits();
377 setSmallBits(getSmallBits() | (uintptr_t(1) << Idx));
393 setSmallBits(getSmallBits() | Mask);
409 setSmallBits(getSmallBits() & ~(uintptr_t(1) << Idx));
424 setSmallBits(getSmallBits() & ~Mask);
432 setSmallBits(~getSmallBits());
440 setSmallBits(getSmallBits() ^ (uintptr_t(1) << Idx));
460 return ((getSmallBits() >> Idx) & 1) != 0;
471 return (getSmallBits() & RHS.getSmallBits()) != 0;
486 return getSmallBits() == RHS.getSmallBits();
499 setSmallBits(getSmallBits() & RHS.getSmallBits());
513 setSmallBits(getSmallBits() & ~RHS.getSmallBits());
527 return (getSmallBits() & ~RHS.getSmallBits()) != 0;
546 setSmallBits(getSmallBits() | RHS.getSmallBits());
560 setSmallBits(getSmallBits() ^ RHS.getSmallBits());
573 setSmallBits(getSmallBits() << N);
581 setSmallBits(getSmallBits() >> N);
663 setSmallBits(getSmallBits() | M);
665 setSmallBits(getSmallBits() & ~M);