Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h221 ArgsUnion *args, unsigned numArgs, Form formUsed, in ParsedAttr() argument
224 EllipsisLoc(ellipsisLoc), NumArgs(numArgs), Invalid(false), in ParsedAttr()
229 if (numArgs) in ParsedAttr()
230 memcpy(getArgsBuffer(), args, numArgs * sizeof(ArgsUnion)); in ParsedAttr()
754 ArgsUnion *args, unsigned numArgs, ParsedAttr::Form form,
759 detail::PropertyData>(numArgs, 0, 0, 0,
762 args, numArgs, form, ellipsisLoc));
993 ArgsUnion *args, unsigned numArgs, ParsedAttr::Form form,
996 args, numArgs, form, ellipsisLoc);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp106 const unsigned numArgs,
488 const unsigned numArgs, in BasicAllocationCheck() argument
492 if (CE->getNumArgs() != numArgs) in BasicAllocationCheck()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp348 numArgs = selector.getNumArgs(), in mangleObjCMethodName() local
349 slotEnd = std::max(numArgs, 1U); in mangleObjCMethodName()
357 if (numArgs) in mangleObjCMethodName()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.h187 unsigned numArgs) const;
H A DSparcISelLowering.cpp2341 unsigned numArgs) const { in LowerF128Op()
2370 assert(Op->getNumOperands() >= numArgs && "Not enough operands!"); in LowerF128Op()
2371 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.cpp1626 int numArgs = (int)aCI->arg_size(); in evaluateCall() local
1627 if (numArgs > 3) in evaluateCall()
1632 if (numArgs > 0) { in evaluateCall()
1637 if (numArgs > 1) { in evaluateCall()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1438 unsigned numArgs = OldMsg->getNumArgs(); in RewritePropertyOrImplicitSetter() local
1439 for (unsigned i = 0; i < numArgs; i++) { in RewritePropertyOrImplicitSetter()
1522 unsigned numArgs = OldMsg->getNumArgs(); in RewritePropertyOrImplicitGetter() local
1523 for (unsigned i = 0; i < numArgs; i++) { in RewritePropertyOrImplicitGetter()
2392 unsigned numArgs = proto->getNumParams(); in RewriteBlockLiteralFunctionDecl() local
2393 for (unsigned i = 0; i < numArgs; i++) { in RewriteBlockLiteralFunctionDecl()
2396 if (i+1 < numArgs) in RewriteBlockLiteralFunctionDecl()
2400 FdStr += (numArgs > 0) ? ", ...);\n" : "...);\n"; in RewriteBlockLiteralFunctionDecl()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td1192 multiclass DemangledIntelSubgroupsBuiltinWrapper<string name, bits<8> numArgs, Op operation> {
1193 …def : DemangledBuiltin<!strconcat("__spirv_", name), OpenCL_std, IntelSubgroups, numArgs, numArgs>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h5150 unsigned numArgs) {
5151 for (unsigned Idx = 0; Idx < numArgs; ++Idx)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp4505 unsigned numArgs = isStore ? 2 : 1; in BuiltinNontemporalOverloaded() local
4508 if (checkArgCount(TheCall, numArgs)) in BuiltinNontemporalOverloaded()
4515 Expr *PointerArg = TheCall->getArg(numArgs - 1); in BuiltinNontemporalOverloaded()
4522 TheCall->setArg(numArgs - 1, PointerArg); in BuiltinNontemporalOverloaded()