Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1470 bool PassAlignment = S.getLangOpts().CoroAlignedAllocation; in makeNewAndDeleteExpr() local
1484 PassAlignment = !ForceNonAligned && S.getLangOpts().CoroAlignedAllocation; in makeNewAndDeleteExpr()
1488 /*isArray*/ false, PassAlignment, in makeNewAndDeleteExpr()
1516 (S.getLangOpts().CoroAlignedAllocation && !PassAlignment)) in makeNewAndDeleteExpr()
1541 if (!OperatorNew || !PassAlignment) { in makeNewAndDeleteExpr()
1636 if (S.getLangOpts().CoroAlignedAllocation && PassAlignment) in makeNewAndDeleteExpr()
H A DSemaExprCXX.cpp2284 bool PassAlignment = getLangOpts().AlignedAllocation && in BuildCXXNew() local
2316 unsigned NumImplicitArgs = PassAlignment ? 2 : 1; in BuildCXXNew()
2381 if (PassAlignment) in BuildCXXNew()
2392 if (PlacementArgs.empty() && !PassAlignment && in BuildCXXNew()
2479 PassAlignment, UsualArrayDeleteWantsSize, in BuildCXXNew()
2527 bool &PassAlignment, FunctionDecl *&Operator, in resolveAllocationOverload() argument
2569 if (PassAlignment) { in resolveAllocationOverload()
2570 PassAlignment = false; in resolveAllocationOverload()
2690 AllocArgs.reserve((PassAlignment ? 2 : 1) + PlaceArgs.size()); in FindAllocationFunctions()
2703 if (PassAlignment) { in FindAllocationFunctions()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h6914 bool &PassAlignment, MultiExprArg PlaceArgs,