Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DSmallBitVector.h631 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
633 applyMask<true, false>(Mask, MaskWords);
635 getPointer()->setBitsInMask(Mask, MaskWords);
640 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
642 applyMask<false, false>(Mask, MaskWords);
644 getPointer()->clearBitsInMask(Mask, MaskWords);
651 applyMask<true, true>(Mask, MaskWords);
653 getPointer()->setBitsNotInMask(Mask, MaskWords);
660 applyMask<false, true>(Mask, MaskWords);
662 getPointer()->clearBitsNotInMask(Mask, MaskWords);
[all …]
H A DBitVector.h687 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
688 applyMask<true, false>(Mask, MaskWords);
693 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
694 applyMask<false, false>(Mask, MaskWords);
699 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
700 applyMask<true, true>(Mask, MaskWords);
706 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()
788 for (i = 0; MaskWords >= Scale; ++i, MaskWords -= Scale) { in applyMask()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h421 Optional<llvm::yaml::Hex32> MaskWords; member
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1740 if (Section.Header->MaskWords) in writeSectionContent()
1741 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::TargetEndianness); in writeSectionContent()
H A DELFYAML.cpp1726 IO.mapOptional("MaskWords", E.MaskWords); in mapping()