Lines Matching refs:Mem
288 void *Mem = C.Allocate(sizeof(AttributedStmt) + in Create() local
291 return new (Mem) AttributedStmt(Loc, Attrs, SubStmt); in Create()
296 void *Mem = C.Allocate(sizeof(AttributedStmt) + in CreateEmpty() local
299 return new (Mem) AttributedStmt(EmptyShell(), NumAttrs); in CreateEmpty()
742 void *Mem = Context.Allocate(Size, llvm::alignOf<ObjCAtTryStmt>()); in Create() local
743 return new (Mem) ObjCAtTryStmt(atTryLoc, atTryStmt, CatchStmts, NumCatchStmts, in Create()
752 void *Mem = Context.Allocate(Size, llvm::alignOf<ObjCAtTryStmt>()); in CreateEmpty() local
753 return new (Mem) ObjCAtTryStmt(EmptyShell(), NumCatchStmts, HasFinally); in CreateEmpty()
769 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>()); in Create() local
770 return new (Mem) CXXTryStmt(tryLoc, tryBlock, handlers); in Create()
778 void *Mem = C.Allocate(Size, llvm::alignOf<CXXTryStmt>()); in Create() local
779 return new (Mem) CXXTryStmt(Empty, numHandlers); in Create()
1085 void *Mem = Context.Allocate(Size); in Create() local
1086 return new (Mem) CapturedStmt(S, Kind, Captures, CaptureInits, CD, RD); in Create()
1098 void *Mem = Context.Allocate(Size); in CreateDeserialized() local
1099 return new (Mem) CapturedStmt(EmptyShell(), NumCaptures); in CreateDeserialized()
1128 void *Mem = C.Allocate(sizeof(OMPPrivateClause) + sizeof(Expr *) * VL.size(), in Create() local
1130 OMPPrivateClause *Clause = new (Mem) OMPPrivateClause(StartLoc, LParenLoc, in Create()
1138 void *Mem = C.Allocate(sizeof(OMPPrivateClause) + sizeof(Expr *) * N, in CreateEmpty() local
1140 return new (Mem) OMPPrivateClause(N); in CreateEmpty()
1155 void *Mem = C.Allocate(sizeof(OMPParallelDirective) + in Create() local
1158 OMPParallelDirective *Dir = new (Mem) OMPParallelDirective(StartLoc, EndLoc, in Create()
1168 void *Mem = C.Allocate(sizeof(OMPParallelDirective) + in CreateEmpty() local
1171 return new (Mem) OMPParallelDirective(N); in CreateEmpty()