Home
last modified time | relevance | path

Searched refs:AlignmentParam (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DDecl.cpp3087 Optional<unsigned> *AlignmentParam, bool *IsNothrow) const { in isReplaceableGlobalAllocationFunction() argument
3135 if (AlignmentParam) in isReplaceableGlobalAllocationFunction()
3136 *AlignmentParam = Params; in isReplaceableGlobalAllocationFunction()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp1884 Optional<unsigned> AlignmentParam; in isUnavailableAlignedAllocationFunction() local
1885 if (FD.isReplaceableGlobalAllocationFunction(&AlignmentParam) && in isUnavailableAlignedAllocationFunction()
1886 AlignmentParam.hasValue()) in isUnavailableAlignedAllocationFunction()
H A DSemaDecl.cpp14981 Optional<unsigned> AlignmentParam; in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction() local
14983 if (!FD->isReplaceableGlobalAllocationFunction(&AlignmentParam, &IsNothrow)) in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction()
15020 if (AlignmentParam.hasValue() && !FD->hasAttr<AllocAlignAttr>()) { in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction()
15022 Context, ParamIdx(AlignmentParam.getValue(), FD), FD->getLocation())); in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DDecl.h2388 Optional<unsigned> *AlignmentParam = nullptr,