| /NextBSD/sys/contrib/dev/acpica/components/parser/ |
| HD | psobject.c | 102 WalkState->ArgTypes = ARGP_NAMESTRING; in AcpiPsGetAmlOpcode() 155 WalkState->ArgTypes = WalkState->OpInfo->ParseArgs; in AcpiPsGetAmlOpcode() 200 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && in AcpiPsBuildNamedOp() 201 (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) != ARGP_NAME)) in AcpiPsBuildNamedOp() 204 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); in AcpiPsBuildNamedOp() 211 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp() 217 if (!GET_CURRENT_ARG_TYPE (WalkState->ArgTypes)) in AcpiPsBuildNamedOp() 224 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp() 453 WalkState->PrevArgTypes = WalkState->ArgTypes; in AcpiPsCompleteOp() 459 &WalkState->ArgTypes, &WalkState->ArgCount); in AcpiPsCompleteOp() [all …]
|
| HD | psloop.c | 118 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), Op); in AcpiPsGetArguments() 129 WalkState->ArgTypes = 0; in AcpiPsGetArguments() 136 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && !WalkState->ArgCount) in AcpiPsGetArguments() 141 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); in AcpiPsGetArguments() 152 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsGetArguments() 424 WalkState->ArgTypes = 0; in AcpiPsParseLoop() 468 &WalkState->ArgTypes, &WalkState->ArgCount); in AcpiPsParseLoop() 476 WalkState->ArgTypes = WalkState->PrevArgTypes; in AcpiPsParseLoop() 527 if (WalkState->ArgTypes) in AcpiPsParseLoop() 553 WalkState->ArgTypes, WalkState->ArgCount); in AcpiPsParseLoop()
|
| /NextBSD/sys/contrib/dev/acpica/components/executer/ |
| HD | exresop.c | 152 UINT32 ArgTypes; in AcpiExResolveOperands() local 168 ArgTypes = OpInfo->RuntimeArgs; in AcpiExResolveOperands() 169 if (ArgTypes == ARGI_INVALID_OPCODE) in AcpiExResolveOperands() 179 Opcode, OpInfo->Name, ArgTypes)); in AcpiExResolveOperands() 188 while (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands() 289 ThisArgType = GET_CURRENT_ARG_TYPE (ArgTypes); in AcpiExResolveOperands() 290 INCREMENT_ARG_LIST (ArgTypes); in AcpiExResolveOperands() 712 if (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands()
|
| /NextBSD/contrib/llvm/include/llvm/ADT/ |
| HD | Optional.h | 74 template<typename ...ArgTypes> 75 void emplace(ArgTypes &&...Args) { in emplace() 78 new (storage.buffer) T(std::forward<ArgTypes>(Args)...); in emplace()
|
| HD | SmallVector.h | 652 template <typename... ArgTypes> void emplace_back(ArgTypes &&... Args) { in emplace_back() 655 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...); in emplace_back()
|
| /NextBSD/sys/contrib/dev/acpica/components/debugger/ |
| HD | dbexec.c | 591 LocalInfo.Types = LocalInfo.ArgTypes; in AcpiDbMethodThread() 770 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; in AcpiDbCreateExecutionThreads() 771 AcpiGbl_DbMethodInfo.ArgTypes[0] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads() 772 AcpiGbl_DbMethodInfo.ArgTypes[1] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads() 773 AcpiGbl_DbMethodInfo.ArgTypes[2] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads()
|
| /NextBSD/contrib/llvm/lib/Transforms/Instrumentation/ |
| HD | DataFlowSanitizer.cpp | 373 llvm::SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end()); in getArgsFunctionType() local 374 ArgTypes.append(T->getNumParams(), ShadowTy); in getArgsFunctionType() 376 ArgTypes.push_back(ShadowPtrTy); in getArgsFunctionType() 380 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType() 385 llvm::SmallVector<Type *, 4> ArgTypes; in getTrampolineFunctionType() local 386 ArgTypes.push_back(T->getPointerTo()); in getTrampolineFunctionType() 387 ArgTypes.append(T->param_begin(), T->param_end()); in getTrampolineFunctionType() 388 ArgTypes.append(T->getNumParams(), ShadowTy); in getTrampolineFunctionType() 391 ArgTypes.push_back(ShadowPtrTy); in getTrampolineFunctionType() 392 return FunctionType::get(T->getReturnType(), ArgTypes, false); in getTrampolineFunctionType() [all …]
|
| /NextBSD/contrib/llvm/tools/clang/lib/CodeGen/ |
| HD | CGCUDANV.cpp | 121 std::vector<llvm::Type *> ArgTypes; in emitDeviceStubBody() local 127 ArgTypes.push_back(cast<llvm::PointerType>(V->getType())->getElementType()); in emitDeviceStubBody() 129 llvm::StructType *ArgStackTy = llvm::StructType::get(Context, ArgTypes); in emitDeviceStubBody() 140 llvm::ConstantExpr::getSizeOf(ArgTypes[I]), in emitDeviceStubBody()
|
| HD | CGCall.cpp | 235 SmallVector<CanQualType, 16> ArgTypes; in arrangeCXXConstructorCall() local 237 ArgTypes.push_back(Context.getCanonicalParamType(Arg.Ty)); in arrangeCXXConstructorCall() 243 ? ArgTypes.front() in arrangeCXXConstructorCall() 250 /*chainCall=*/false, ArgTypes, Info, in arrangeCXXConstructorCall() 1289 SmallVector<llvm::Type*, 8> ArgTypes(IRFunctionArgs.totalIRArgs()); in GetFunctionType() local 1296 ArgTypes[IRFunctionArgs.getSRetArgNo()] = in GetFunctionType() 1304 ArgTypes[IRFunctionArgs.getInallocaArgNo()] = ArgStruct->getPointerTo(); in GetFunctionType() 1316 ArgTypes[IRFunctionArgs.getPaddingArgNo(ArgNo)] = in GetFunctionType() 1332 ArgTypes[FirstIRArg] = LTy->getPointerTo(); in GetFunctionType() 1345 ArgTypes[FirstIRArg + i] = st->getElementType(i); in GetFunctionType() [all …]
|
| HD | CGStmt.cpp | 1847 std::vector<llvm::Type *> ArgTypes; in EmitAsmStmt() local 1922 ArgTypes.push_back(Dest.getAddress()->getType()); in EmitAsmStmt() 2022 ArgTypes.push_back(Arg->getType()); in EmitAsmStmt() 2029 ArgTypes.push_back(InOutArgTypes[i]); in EmitAsmStmt() 2068 llvm::FunctionType::get(ResultType, ArgTypes, false); in EmitAsmStmt()
|
| HD | CodeGenFunction.h | 2973 SmallVector<QualType, 16> ArgTypes; variable 2998 ArgTypes.push_back(*I); 3010 ArgTypes.push_back(getVarArgType(*Arg)); 3012 EmitCallArgs(Args, ArgTypes, ArgBeg, ArgEnd, CalleeDecl, ParamsToSkip); 3015 void EmitCallArgs(CallArgList &Args, ArrayRef<QualType> ArgTypes,
|
| HD | CodeGenFunction.cpp | 679 SmallVector<QualType, 16> ArgTypes; in StartFunction() local 682 ArgTypes.push_back((*i)->getType()); in StartFunction() 686 getContext().getFunctionType(RetTy, ArgTypes, in StartFunction()
|
| HD | MicrosoftCXXABI.cpp | 920 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy}; in emitRTtypeidCall() local 922 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false); in emitRTtypeidCall() 971 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy, CGF.Int32Ty, CGF.Int8PtrTy, in EmitDynamicCastCall() local 974 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false), in EmitDynamicCastCall() 992 llvm::Type *ArgTypes[] = {CGF.Int8PtrTy}; in EmitDynamicCastToVoid() local 994 llvm::FunctionType::get(CGF.Int8PtrTy, ArgTypes, false), in EmitDynamicCastToVoid()
|
| HD | CGExpr.cpp | 2358 SmallVector<llvm::Type *, 4> ArgTypes; in EmitCheck() local 2360 ArgTypes.reserve(DynamicArgs.size() + 1); in EmitCheck() 2366 ArgTypes.push_back(Int8PtrTy); in EmitCheck() 2369 ArgTypes.push_back(IntPtrTy); in EmitCheck() 2373 llvm::FunctionType::get(CGM.VoidTy, ArgTypes, false); in EmitCheck()
|
| /NextBSD/contrib/llvm/tools/clang/lib/Frontend/Rewrite/ |
| HD | RewriteModernObjC.cpp | 421 SmallVectorImpl<QualType> &ArgTypes, 2691 SmallVector<QualType, 4> ArgTypes; in RewriteObjCBoxedExpr() local 2692 ArgTypes.push_back(Context->getObjCClassType()); in RewriteObjCBoxedExpr() 2693 ArgTypes.push_back(Context->getObjCSelType()); in RewriteObjCBoxedExpr() 2695 ArgTypes.push_back(PI->getType()); in RewriteObjCBoxedExpr() 2711 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic()); in RewriteObjCBoxedExpr() 2818 SmallVector<QualType, 4> ArgTypes; in RewriteObjCArrayLiteralExpr() local 2819 ArgTypes.push_back(Context->getObjCClassType()); in RewriteObjCArrayLiteralExpr() 2820 ArgTypes.push_back(Context->getObjCSelType()); in RewriteObjCArrayLiteralExpr() 2822 ArgTypes.push_back(PI->getType()); in RewriteObjCArrayLiteralExpr() [all …]
|
| HD | RewriteObjC.cpp | 355 SmallVectorImpl<QualType> &ArgTypes, 2591 SmallVectorImpl<QualType> &ArgTypes, in SynthMsgSendStretCallExpr() argument 2603 QualType castType = getSimpleFunctionType(returnType, ArgTypes, in SynthMsgSendStretCallExpr() 2927 SmallVector<QualType, 8> ArgTypes; in SynthMessageExpr() local 2932 ArgTypes.push_back(Context->getPointerType(getSuperStructType())); in SynthMessageExpr() 2934 ArgTypes.push_back(Context->getObjCIdType()); in SynthMessageExpr() 2935 ArgTypes.push_back(Context->getObjCSelType()); in SynthMessageExpr() 2944 ArgTypes.push_back(t); in SynthMessageExpr() 2971 getSimpleFunctionType(returnType, ArgTypes, MD ? MD->isVariadic() : true); in SynthMessageExpr() 2991 ArgTypes, MsgExprs, in SynthMessageExpr() [all …]
|
| /NextBSD/contrib/libc++/include/ |
| D | functional | 58 template <class... ArgTypes> 59 typename result_of<T&(ArgTypes&&...)>::type 60 operator() (ArgTypes&&...) const; 369 template<class R, class... ArgTypes> 370 class function<R(ArgTypes...)> 371 : public unary_function<T1, R> // iff sizeof...(ArgTypes) == 1 and 372 // ArgTypes contains T1 373 : public binary_function<T1, T2, R> // iff sizeof...(ArgTypes) == 2 and 374 // ArgTypes contains T1 and T2 416 R operator()(ArgTypes...) const; [all …]
|
| D | future | 321 template <class R, class... ArgTypes> 322 class packaged_task<R(ArgTypes...)> 350 void operator()(ArgTypes... ); 351 void make_ready_at_thread_exit(ArgTypes...); 357 void swap(packaged_task<R(ArgTypes...)&, packaged_task<R(ArgTypes...)>&) noexcept;
|
| /NextBSD/contrib/llvm/lib/Target/AMDGPU/ |
| HD | AMDGPUPromoteAlloca.cpp | 375 std::vector<Type*> ArgTypes; in visitAlloca() local 378 ArgTypes.push_back(Call->getArgOperand(ArgIdx)->getType()); in visitAlloca() 381 FunctionType *NewType = FunctionType::get(Call->getType(), ArgTypes, in visitAlloca()
|
| /NextBSD/contrib/libc++/include/experimental/ |
| D | type_traits | 166 template <class F, class... ArgTypes> class invocation_type<F(ArgTypes...)>; 168 template <class F, class... ArgTypes> class raw_invocation_type<F(ArgTypes...)>;
|
| /NextBSD/sys/contrib/dev/acpica/include/ |
| HD | acstruct.h | 92 UINT32 ArgTypes; member
|
| HD | aclocal.h | 1307 ACPI_OBJECT_TYPE ArgTypes[4]; member
|
| /NextBSD/contrib/llvm/lib/Transforms/Utils/ |
| HD | CloneFunction.cpp | 220 std::vector<Type*> ArgTypes; in CloneFunction() local 228 ArgTypes.push_back(I->getType()); in CloneFunction() 232 ArgTypes, F->getFunctionType()->isVarArg()); in CloneFunction()
|
| HD | CodeExtractor.cpp | 453 std::vector<Type*> ArgTypes; in emitCallAndSwitchStatement() local 456 ArgTypes.push_back((*v)->getType()); in emitCallAndSwitchStatement() 459 StructArgTy = StructType::get(newFunction->getContext(), ArgTypes); in emitCallAndSwitchStatement()
|
| /NextBSD/contrib/llvm/lib/IR/ |
| HD | IRBuilder.cpp | 280 Type *ArgTypes[] = { FuncPtrType }; in CreateGCStatepointCall() local 283 ArgTypes); in CreateGCStatepointCall()
|