Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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.h700 void setBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
701 applyMask<true, false>(Mask, MaskWords);
706 void clearBitsInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
707 applyMask<false, false>(Mask, MaskWords);
712 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
713 applyMask<true, true>(Mask, MaskWords);
719 applyMask<false, true>(Mask, MaskWords);
796 void applyMask(const uint32_t *Mask, unsigned MaskWords) { in applyMask() argument
798 MaskWords = std::min(MaskWords, (size() + 31) / 32); in applyMask()
801 for (i = 0; MaskWords >= Scale; ++i, MaskWords -= Scale) { in applyMask()
[all …]
/llvm-project-15.0.7/llvm/test/tools/obj2yaml/ELF/
H A Dgnu-hash-section.yaml97 MaskWords: 0x0
102 ## Case 3: MaskWords field is broken: it says that the number of entries
109 MaskWords: 0x1
121 MaskWords: 0x0
133 MaskWords: 0x1
/llvm-project-15.0.7/llvm/test/tools/llvm-ifs/
H A Dread-elf-dynsym.test91 MaskWords: 2
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/
H A Dgnu-hash-section.yaml275 MaskWords: 0x3
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1305 uint64_t MaskWords = Data.getU32(Cur); in dumpGnuHashSection() local
1311 if (!Cur || (Size < MaskWords * AddrSize + NBuckets * 4) || in dumpGnuHashSection()
1320 S->BloomFilter.emplace(MaskWords); in dumpGnuHashSection()
/llvm-project-15.0.7/llvm/test/tools/llvm-readobj/ELF/
H A Dgnuhash.test35 MaskWords: [[MASKWORDS=2]]
H A Dhash-histogram.test288 MaskWords: [[MASKWORDS=1]]
H A Dhash-symbols.test494 MaskWords: [[MASKWORDS=2]]
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h423 Optional<llvm::yaml::Hex32> MaskWords; member
/llvm-project-15.0.7/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.cpp1802 IO.mapOptional("MaskWords", E.MaskWords); in mapping()