Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DBitVector.h483 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
484 applyMask<true, false>(Mask, MaskWords);
489 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
490 applyMask<false, false>(Mask, MaskWords);
495 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
496 applyMask<true, true>(Mask, MaskWords);
501 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
502 applyMask<false, true>(Mask, MaskWords);
546 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
548 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
/external/llvm/include/llvm/ADT/
DBitVector.h483 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
484 applyMask<true, false>(Mask, MaskWords);
489 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
490 applyMask<false, false>(Mask, MaskWords);
495 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
496 applyMask<true, true>(Mask, MaskWords);
501 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
502 applyMask<false, true>(Mask, MaskWords);
546 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
548 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
DSmallBitVector.h514 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
516 applyMask<true, false>(Mask, MaskWords);
518 getPointer()->setBitsInMask(Mask, MaskWords);
523 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
525 applyMask<false, false>(Mask, MaskWords);
527 getPointer()->clearBitsInMask(Mask, MaskWords);
532 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
534 applyMask<true, true>(Mask, MaskWords);
536 getPointer()->setBitsNotInMask(Mask, MaskWords);
541 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/
DSmallBitVector.h619 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
621 applyMask<true, false>(Mask, MaskWords);
623 getPointer()->setBitsInMask(Mask, MaskWords);
628 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
630 applyMask<false, false>(Mask, MaskWords);
632 getPointer()->clearBitsInMask(Mask, MaskWords);
637 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
639 applyMask<true, true>(Mask, MaskWords);
641 getPointer()->setBitsNotInMask(Mask, MaskWords);
646 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
[all …]
DBitVector.h759 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
760 applyMask<true, false>(Mask, MaskWords);
765 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
766 applyMask<false, false>(Mask, MaskWords);
771 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
772 applyMask<true, true>(Mask, MaskWords);
777 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
778 applyMask<false, true>(Mask, MaskWords);
883 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
885 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]
/external/swiftshader/third_party/subzero/src/
DIceBitVector.h718 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
719 applyMask<true, false>(Mask, MaskWords);
724 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
725 applyMask<false, false>(Mask, MaskWords);
730 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
731 applyMask<true, true>(Mask, MaskWords);
736 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
737 applyMask<false, true>(Mask, MaskWords);
783 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
785 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
[all …]