Searched refs:MaskWords (Results 1 – 12 of 12) sorted by relevance
| /llvm-project-15.0.7/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 | 700 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 D | gnu-hash-section.yaml | 97 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 D | read-elf-dynsym.test | 91 MaskWords: 2
|
| /llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/ |
| H A D | gnu-hash-section.yaml | 275 MaskWords: 0x3
|
| /llvm-project-15.0.7/llvm/tools/obj2yaml/ |
| H A D | elf2yaml.cpp | 1305 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 D | gnuhash.test | 35 MaskWords: [[MASKWORDS=2]]
|
| H A D | hash-histogram.test | 288 MaskWords: [[MASKWORDS=1]]
|
| H A D | hash-symbols.test | 494 MaskWords: [[MASKWORDS=2]]
|
| /llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/ |
| H A D | ELFYAML.h | 423 Optional<llvm::yaml::Hex32> MaskWords; member
|
| /llvm-project-15.0.7/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 1740 if (Section.Header->MaskWords) in writeSectionContent() 1741 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::TargetEndianness); in writeSectionContent()
|
| H A D | ELFYAML.cpp | 1802 IO.mapOptional("MaskWords", E.MaskWords); in mapping()
|