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

/external/llvm/include/llvm/ADT/
H A DSmallBitVector.h491 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
493 applyMask<true, false>(Mask, MaskWords);
495 getPointer()->setBitsInMask(Mask, MaskWords);
500 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
502 applyMask<false, false>(Mask, MaskWords);
504 getPointer()->clearBitsInMask(Mask, MaskWords);
509 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
511 applyMask<true, true>(Mask, MaskWords);
513 getPointer()->setBitsNotInMask(Mask, MaskWords);
518 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords
527 applyMask(const uint32_t *Mask, unsigned MaskWords) argument
[all...]

Completed in 72 milliseconds