Home
last modified time | relevance | path

Searched refs:ArrayIndices (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DMemRegion.cpp729 std::string ArrayIndices; in getDescriptiveName() local
748 ArrayIndices = (llvm::Twine("[") + Idx.str() + "]" + ArrayIndices).str(); in getDescriptiveName()
764 ArrayIndices = (llvm::Twine("[") + Idx + "]" + ArrayIndices).str(); in getDescriptiveName()
774 return QuoteIfNeeded(llvm::Twine(os.str()) + ArrayIndices); in getDescriptiveName()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterp.h310 ArrayRef<int64_t> ArrayIndices, int64_t &Result);
3213 llvm::SmallVector<int64_t> ArrayIndices; in OffsetOf() local
3215 ArrayIndices.emplace_back(S.Stk.pop<int64_t>()); in OffsetOf()
3218 if (!InterpretOffsetOf(S, OpPC, E, ArrayIndices, Result)) in OffsetOf()
H A DInterpBuiltin.cpp2746 ArrayRef<int64_t> ArrayIndices, int64_t &IntResult) { in InterpretOffsetOf() argument
2775 int64_t Index = ArrayIndices[ArrayIndex]; in InterpretOffsetOf()