Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDecl.cpp3094 Optional<unsigned> *AlignmentParam, bool *IsNothrow) const { in isReplaceableGlobalAllocationFunction() argument
3142 if (AlignmentParam) in isReplaceableGlobalAllocationFunction()
3143 *AlignmentParam = Params; in isReplaceableGlobalAllocationFunction()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaExprCXX.cpp1867 Optional<unsigned> AlignmentParam; in isUnavailableAlignedAllocationFunction() local
1868 if (FD.isReplaceableGlobalAllocationFunction(&AlignmentParam) && in isUnavailableAlignedAllocationFunction()
1869 AlignmentParam.hasValue()) in isUnavailableAlignedAllocationFunction()
H A DSemaDecl.cpp14925 Optional<unsigned> AlignmentParam; in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction() local
14927 if (!FD->isReplaceableGlobalAllocationFunction(&AlignmentParam, &IsNothrow)) in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction()
14964 if (AlignmentParam.hasValue() && !FD->hasAttr<AllocAlignAttr>()) { in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction()
14966 Context, ParamIdx(AlignmentParam.getValue(), FD), FD->getLocation())); in AddKnownFunctionAttributesForReplaceableGlobalAllocationFunction()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDecl.h2362 Optional<unsigned> *AlignmentParam = nullptr,