Home
last modified time | relevance | path

Searched refs:BitIdx (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLocal.cpp2920 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) { in collectBitParts() local
2921 if (A->Provenance[BitIdx] != BitPart::Unset && in collectBitParts()
2922 B->Provenance[BitIdx] != BitPart::Unset && in collectBitParts()
2923 A->Provenance[BitIdx] != B->Provenance[BitIdx]) in collectBitParts()
2926 if (A->Provenance[BitIdx] == BitPart::Unset) in collectBitParts()
2927 Result->Provenance[BitIdx] = B->Provenance[BitIdx]; in collectBitParts()
2929 Result->Provenance[BitIdx] = A->Provenance[BitIdx]; in collectBitParts()
2983 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) in collectBitParts() local
2985 if (AndMask[BitIdx] == 0) in collectBitParts()
2986 Result->Provenance[BitIdx] = BitPart::Unset; in collectBitParts()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerValueBitMap.h36 uintptr_t BitIdx = Idx % kBitsInWord; in AddValue() local
38 uintptr_t New = Old | (1UL << BitIdx); in AddValue()
51 uintptr_t BitIdx = Idx % kBitsInWord; in Get() local
52 return Map[WordIdx] & (1UL << BitIdx); in Get()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DGlobalsStream.cpp148 uint8_t BitIdx = I % 32; in readGSIHashBuckets() local
149 bool IsSet = HashBitmap[WordIdx] & (1U << BitIdx); in readGSIHashBuckets()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp7014 int BitIdx = N->getConstantOperandVal(2); in getTargetShuffleMask() local
7015 DecodeEXTRQIMask(NumElems, MaskEltSize, BitLen, BitIdx, Mask); in getTargetShuffleMask()
7025 int BitIdx = N->getConstantOperandVal(3); in getTargetShuffleMask() local
7026 DecodeINSERTQIMask(NumElems, MaskEltSize, BitLen, BitIdx, Mask); in getTargetShuffleMask()
12941 uint64_t &BitIdx, const APInt &Zeroable) { in matchShuffleAsEXTRQ() argument
12987 BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f; in matchShuffleAsEXTRQ()
12997 uint64_t &BitIdx) { in matchShuffleAsINSERTQ() argument
13050 BitIdx = (Idx * VT.getScalarSizeInBits()) & 0x3f; in matchShuffleAsINSERTQ()
13064 uint64_t BitLen, BitIdx; in lowerShuffleWithSSE4A() local
13065 if (matchShuffleAsEXTRQ(VT, V1, V2, Mask, BitLen, BitIdx, Zeroable)) in lowerShuffleWithSSE4A()
[all …]