Lines Matching full:maskwords
646 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
648 applyMask<true, false>(Mask, MaskWords);
650 getPointer()->setBitsInMask(Mask, MaskWords);
655 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
657 applyMask<false, false>(Mask, MaskWords);
659 getPointer()->clearBitsInMask(Mask, MaskWords);
664 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
666 applyMask<true, true>(Mask, MaskWords);
668 getPointer()->setBitsNotInMask(Mask, MaskWords);
673 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
675 applyMask<false, true>(Mask, MaskWords);
677 getPointer()->clearBitsNotInMask(Mask, MaskWords);
695 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
696 assert(MaskWords <= sizeof(uintptr_t) && "Mask is larger than base!"); in applyMask()