Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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);
649 void setBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
651 applyMask<true, true>(Mask, MaskWords);
653 getPointer()->setBitsNotInMask(Mask, MaskWords);
658 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
[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);
705 void clearBitsNotInMask(const uint32_t *Mask, unsigned MaskWords = ~0u) {
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()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Delf2yaml.cpp1263 uint64_t MaskWords = Data.getU32(Cur); in dumpGnuHashSection() local
1269 if (!Cur || (Size < MaskWords * AddrSize + NBuckets * 4) || in dumpGnuHashSection()
1278 S->BloomFilter.emplace(MaskWords); in dumpGnuHashSection()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h420 Optional<llvm::yaml::Hex32> MaskWords; member
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp1704 if (Section.Header->MaskWords) in writeSectionContent()
1705 CBA.write<uint32_t>(*Section.Header->MaskWords, ELFT::TargetEndianness); in writeSectionContent()
H A DELFYAML.cpp1722 IO.mapOptional("MaskWords", E.MaskWords); in mapping()