Searched refs:MaskWords (Results 1 – 5 of 5) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | SmallBitVector.h | 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); 666 applyMask<true, true>(Mask, MaskWords); 668 getPointer()->setBitsNotInMask(Mask, MaskWords); 675 applyMask<false, true>(Mask, MaskWords); 677 getPointer()->clearBitsNotInMask(Mask, MaskWords); [all …]
|
| H A D | BitVector.h | 707 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 708 applyMask<true, false>(Mask, MaskWords); 713 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 714 applyMask<false, false>(Mask, MaskWords); 719 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) { 720 applyMask<true, true>(Mask, MaskWords); 726 applyMask<false, true>(Mask, MaskWords); 803 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument 805 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask() 808 for (i = 0; MaskWords >= Scale; ++i, MaskWords -= Scale) { in applyMask() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | ELFYAML.h | 439 std::optional<llvm::yaml::Hex32> MaskWords; member
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 1796 if (Section.Header->MaskWords) in writeSectionContent() 1797 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::TargetEndianness); in writeSectionContent()
|
| H A D | ELFYAML.cpp | 1856 IO.mapOptional("MaskWords", E.MaskWords); in mapping()
|