Searched refs:ElementIdx (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | PagedVector.h | 170 size_t ElementIdx; variable 179 MaterializedIterator(PagedVector const *PV, size_t ElementIdx) in MaterializedIterator() argument 180 : PV(PV), ElementIdx(ElementIdx) {} in MaterializedIterator() 187 ++ElementIdx; 188 if (ElementIdx % PageSize == 0) { 189 while (ElementIdx < PV->Size && 190 !PV->PageToDataPtrs[ElementIdx / PageSize]) 191 ElementIdx += PageSize; 192 if (ElementIdx > PV->Size) 193 ElementIdx = PV->Size; [all …]
|
| /src/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/ |
| H A D | TypeErasedDataflowAnalysis.cpp | 134 int ElementIdx, const char *Message) in PrettyStackTraceCFGElement() argument 135 : Element(Element), BlockIdx(BlockIdx), ElementIdx(ElementIdx), in PrettyStackTraceCFGElement() 139 OS << Message << ": Element [B" << BlockIdx << "." << ElementIdx << "]\n"; in print() 150 int ElementIdx; member in clang::dataflow::__anon5599974f0211::PrettyStackTraceCFGElement 419 int ElementIdx = 1; local 422 ElementIdx++, "transferCFGBlock");
|
| /src/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Operator.cpp | 173 unsigned ElementIdx = ConstOffset->getZExtValue(); in accumulateConstantOffset() local 177 APInt(Offset.getBitWidth(), SL->getElementOffset(ElementIdx)), in accumulateConstantOffset() 235 unsigned ElementIdx = ConstOffset->getZExtValue(); in collectOffset() local 238 CollectConstantOffset(APInt(BitWidth, SL->getElementOffset(ElementIdx)), in collectOffset()
|
| /src/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | InlineCost.cpp | 1436 unsigned ElementIdx = OpC->getZExtValue(); in accumulateGEPOffset() local 1438 Offset += APInt(IntPtrWidth, SL->getElementOffset(ElementIdx)); in accumulateGEPOffset()
|
| H A D | ValueTracking.cpp | 2419 unsigned ElementIdx = OpC->getZExtValue(); in isGEPKnownNonNull() local 2421 uint64_t ElementOffset = SL->getElementOffset(ElementIdx); in isGEPKnownNonNull()
|