Home
last modified time | relevance | path

Searched refs:OldStackSize (Results 1 – 2 of 2) sorted by relevance

/external/clang/lib/AST/
DExprConstant.cpp905 unsigned OldStackSize; member in __anon7264eadc0111::ScopeRAII
908 : Info(Info), OldStackSize(Info.CleanupStack.size()) {} in ScopeRAII()
912 cleanup(Info, OldStackSize); in ~ScopeRAII()
915 static void cleanup(EvalInfo &Info, unsigned OldStackSize) { in cleanup() argument
916 unsigned NewEnd = OldStackSize; in cleanup()
917 for (unsigned I = OldStackSize, N = Info.CleanupStack.size(); in cleanup()
/external/llvm-project/clang/lib/AST/
DExprConstant.cpp1339 unsigned OldStackSize; member in __anon3f12a8aa0311::ScopeRAII
1342 : Info(Info), OldStackSize(Info.CleanupStack.size()) { in ScopeRAII()
1348 bool OK = cleanup(Info, RunDestructors, OldStackSize); in destroy()
1349 OldStackSize = -1U; in destroy()
1353 if (OldStackSize != -1U) in ~ScopeRAII()
1361 unsigned OldStackSize) { in cleanup() argument
1362 assert(OldStackSize <= Info.CleanupStack.size() && in cleanup()
1368 for (unsigned I = Info.CleanupStack.size(); I > OldStackSize; --I) { in cleanup()
1378 auto NewEnd = Info.CleanupStack.begin() + OldStackSize; in cleanup()