Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h646 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 DBitVector.h707 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 DELFYAML.h439 std::optional<llvm::yaml::Hex32> MaskWords; member
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1796 if (Section.Header->MaskWords) in writeSectionContent()
1797 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::TargetEndianness); in writeSectionContent()
H A DELFYAML.cpp1856 IO.mapOptional("MaskWords", E.MaskWords); in mapping()