Home
last modified time | relevance | path

Searched refs:numArgs (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h208 ArgsUnion *args, unsigned numArgs, Form formUsed, in ParsedAttr() argument
211 EllipsisLoc(ellipsisLoc), NumArgs(numArgs), Invalid(false), in ParsedAttr()
216 if (numArgs) in ParsedAttr()
217 memcpy(getArgsBuffer(), args, numArgs * sizeof(ArgsUnion)); in ParsedAttr()
729 ArgsUnion *args, unsigned numArgs, ParsedAttr::Form form,
734 detail::PropertyData>(numArgs, 0, 0, 0, 0);
739 detail::PropertyData>(numArgs, 0, 0, 0,
742 args, numArgs, form, ellipsisLoc));
969 ArgsUnion *args, unsigned numArgs, ParsedAttr::Form form,
972 args, numArgs, form, ellipsisLoc);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp88 const unsigned numArgs,
354 const unsigned numArgs, in BasicAllocationCheck() argument
358 if (CE->getNumArgs() != numArgs) in BasicAllocationCheck()
H A DCheckSecuritySyntaxOnly.cpp607 unsigned numArgs = CE->getNumArgs(); in checkCall_mkstemp() local
608 if ((signed) numArgs <= ArgSuffix.first) in checkCall_mkstemp()
828 int numArgs = FPT->getNumParams(); in checkCall_strCommon() local
829 if (numArgs != 2 && numArgs != 3) in checkCall_strCommon()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp349 numArgs = selector.getNumArgs(), in mangleObjCMethodName() local
350 slotEnd = std::max(numArgs, 1U); in mangleObjCMethodName()
358 if (numArgs) in mangleObjCMethodName()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.h187 unsigned numArgs) const;
H A DSparcISelLowering.cpp2349 unsigned numArgs) const { in LowerF128Op()
2378 assert(Op->getNumOperands() >= numArgs && "Not enough operands!"); in LowerF128Op()
2379 for (unsigned i = 0, e = numArgs; i != e; ++i) { in LowerF128Op()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp1474 const int numArgs = call_inst->arg_size(); in Interpret() local
1478 if (numArgs >= 16) { in Interpret()
1486 for (int i = 0; i < numArgs; i++) { in Interpret()
1539 llvm::ArrayRef<lldb_private::ABI::CallArgument> args(rawArgs, numArgs); in Interpret()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp1584 int numArgs = (int)aCI->arg_size(); in evaluateCall() local
1585 if (numArgs > 3) in evaluateCall()
1590 if (numArgs > 0) { in evaluateCall()
1595 if (numArgs > 1) { in evaluateCall()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1439 unsigned numArgs = OldMsg->getNumArgs(); in RewritePropertyOrImplicitSetter() local
1440 for (unsigned i = 0; i < numArgs; i++) { in RewritePropertyOrImplicitSetter()
1523 unsigned numArgs = OldMsg->getNumArgs(); in RewritePropertyOrImplicitGetter() local
1524 for (unsigned i = 0; i < numArgs; i++) { in RewritePropertyOrImplicitGetter()
2393 unsigned numArgs = proto->getNumParams(); in RewriteBlockLiteralFunctionDecl() local
2394 for (unsigned i = 0; i < numArgs; i++) { in RewriteBlockLiteralFunctionDecl()
2397 if (i+1 < numArgs) in RewriteBlockLiteralFunctionDecl()
2401 FdStr += (numArgs > 0) ? ", ...);\n" : "...);\n"; in RewriteBlockLiteralFunctionDecl()
H A DRewriteObjC.cpp2306 unsigned numArgs = proto->getNumParams(); in RewriteBlockLiteralFunctionDecl() local
2307 for (unsigned i = 0; i < numArgs; i++) { in RewriteBlockLiteralFunctionDecl()
2310 if (i+1 < numArgs) in RewriteBlockLiteralFunctionDecl()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h4352 unsigned numArgs) {
4353 for (unsigned Idx = 0; Idx < numArgs; ++Idx)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp8826 unsigned numArgs = isStore ? 2 : 1; in SemaBuiltinNontemporalOverloaded() local
8829 if (checkArgCount(*this, TheCall, numArgs)) in SemaBuiltinNontemporalOverloaded()
8836 Expr *PointerArg = TheCall->getArg(numArgs - 1); in SemaBuiltinNontemporalOverloaded()
8843 TheCall->setArg(numArgs - 1, PointerArg); in SemaBuiltinNontemporalOverloaded()