OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MaskWords
(Results
1 - 6
of
6
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
BitVector.h
687
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
) {
785
MaskWords
= std::min(MaskWords, (size() + 31) / 32)
[
all
...]
SmallBitVector.h
631
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
...]
/src/external/apache2/llvm/dist/llvm/tools/obj2yaml/
elf2yaml.cpp
1263
uint64_t
MaskWords
= Data.getU32(Cur);
1269
if (!Cur || (Size <
MaskWords
* AddrSize + NBuckets * 4) ||
1278
S->BloomFilter.emplace(
MaskWords
);
/src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ELFYAML.h
420
Optional<llvm::yaml::Hex32>
MaskWords
;
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp
1702
// Write the number of words in the Bloom filter. As above, the "
MaskWords
"
1704
if (Section.Header->
MaskWords
)
1705
CBA.write<uint32_t>(*Section.Header->
MaskWords
, ELFT::TargetEndianness);
ELFYAML.cpp
1722
IO.mapOptional("
MaskWords
", E.
MaskWords
);
Completed in 22 milliseconds
Indexes created Tue Sep 08 00:25:21 UTC 2026