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.cpp709 std::string ArrayIndices; in getDescriptiveName() local
721 ArrayIndices = (llvm::Twine("[") + Idx.str() + "]" + ArrayIndices).str(); in getDescriptiveName()
728 ArrayIndices = (llvm::Twine("[") + Idx + "]" + ArrayIndices).str(); in getDescriptiveName()
738 return (llvm::Twine("'") + os.str() + ArrayIndices + "'").str(); in getDescriptiveName()
740 return (llvm::Twine(os.str()) + ArrayIndices).str(); in getDescriptiveName()
/freebsd/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterpBuiltin.cpp859 llvm::ArrayRef<int64_t> ArrayIndices, in InterpretOffsetOf() argument
888 int64_t Index = ArrayIndices[ArrayIndex]; in InterpretOffsetOf()
H A DInterp.h198 llvm::ArrayRef<int64_t> ArrayIndices, int64_t &Result);
2012 llvm::SmallVector<int64_t> ArrayIndices; in OffsetOf() local
2014 ArrayIndices.emplace_back(S.Stk.pop<int64_t>()); in OffsetOf()
2017 if (!InterpretOffsetOf(S, OpPC, E, ArrayIndices, Result)) in OffsetOf()