Searched defs:MaskWords (Results 1 - 1 of 1) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h522 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
524 applyMask<true, false>(Mask, MaskWords);
526 getPointer()->setBitsInMask(Mask, MaskWords);
531 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
533 applyMask<false, false>(Mask, MaskWords);
535 getPointer()->clearBitsInMask(Mask, MaskWords);
540 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
542 applyMask<true, true>(Mask, MaskWords);
544 getPointer()->setBitsNotInMask(Mask, MaskWords);
549 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords
558 applyMask(const uint32_t *Mask, unsigned MaskWords) argument
[all...]

Completed in 500 milliseconds