| /freebsd-9-stable/sys/contrib/dev/acpica/parser/ |
| D | psloop.c | 151 WalkState->ArgTypes = ARGP_NAMESTRING; in AcpiPsGetAmlOpcode() 174 WalkState->ArgTypes = WalkState->OpInfo->ParseArgs; in AcpiPsGetAmlOpcode() 219 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && in AcpiPsBuildNamedOp() 220 (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) != ARGP_NAME)) in AcpiPsBuildNamedOp() 223 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); in AcpiPsBuildNamedOp() 230 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp() 236 if (!GET_CURRENT_ARG_TYPE (WalkState->ArgTypes)) in AcpiPsBuildNamedOp() 243 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp() 457 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), Op); in AcpiPsGetArguments() 468 WalkState->ArgTypes = 0; in AcpiPsGetArguments() [all …]
|
| /freebsd-9-stable/sys/contrib/dev/acpica/executer/ |
| D | exresop.c | 155 UINT32 ArgTypes; in AcpiExResolveOperands() local 171 ArgTypes = OpInfo->RuntimeArgs; in AcpiExResolveOperands() 172 if (ArgTypes == ARGI_INVALID_OPCODE) in AcpiExResolveOperands() 182 Opcode, OpInfo->Name, ArgTypes)); in AcpiExResolveOperands() 191 while (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands() 294 ThisArgType = GET_CURRENT_ARG_TYPE (ArgTypes); in AcpiExResolveOperands() 295 INCREMENT_ARG_LIST (ArgTypes); in AcpiExResolveOperands() 726 if (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/CodeGen/ |
| D | CGCUDANV.cpp | 82 std::vector<llvm::Type *> ArgTypes; in EmitDeviceStubBody() local 88 ArgTypes.push_back(cast<llvm::PointerType>(V->getType())->getElementType()); in EmitDeviceStubBody() 91 CGF.getLLVMContext(), ArgTypes); in EmitDeviceStubBody() 102 llvm::ConstantExpr::getSizeOf(ArgTypes[I]), in EmitDeviceStubBody()
|
| D | CGStmt.cpp | 1518 std::vector<llvm::Type *> ArgTypes; in EmitAsmStmt() local 1584 ArgTypes.push_back(Dest.getAddress()->getType()); in EmitAsmStmt() 1669 ArgTypes.push_back(Arg->getType()); in EmitAsmStmt() 1676 ArgTypes.push_back(InOutArgTypes[i]); in EmitAsmStmt() 1713 llvm::FunctionType::get(ResultType, ArgTypes, false); in EmitAsmStmt()
|
| D | CodeGenFunction.cpp | 556 SmallVector<QualType, 16> ArgTypes; in StartFunction() local 559 ArgTypes.push_back((*i)->getType()); in StartFunction() 563 getContext().getFunctionType(RetTy, ArgTypes, in StartFunction()
|
| D | CGExpr.cpp | 2160 SmallVector<llvm::Type *, 4> ArgTypes; in EmitCheck() local 2162 ArgTypes.reserve(DynamicArgs.size() + 1); in EmitCheck() 2168 ArgTypes.push_back(Int8PtrTy); in EmitCheck() 2171 ArgTypes.push_back(IntPtrTy); in EmitCheck() 2179 llvm::FunctionType::get(CGM.VoidTy, ArgTypes, false); in EmitCheck()
|
| D | CGObjCGNU.cpp | 2580 llvm::Type *ArgTypes[2] = {PtrTy, PtrToInt8Ty}; in ModuleInitFunction() local 2583 ArgTypes, false); in ModuleInitFunction()
|
| /freebsd-9-stable/contrib/llvm/lib/Transforms/Instrumentation/ |
| D | DataFlowSanitizer.cpp | 282 llvm::SmallVector<Type *, 4> ArgTypes; in getArgsFunctionType() local 283 std::copy(T->param_begin(), T->param_end(), std::back_inserter(ArgTypes)); in getArgsFunctionType() 285 ArgTypes.push_back(ShadowTy); in getArgsFunctionType() 287 ArgTypes.push_back(ShadowPtrTy); in getArgsFunctionType() 291 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType() 296 llvm::SmallVector<Type *, 4> ArgTypes; in getTrampolineFunctionType() local 297 ArgTypes.push_back(T->getPointerTo()); in getTrampolineFunctionType() 298 std::copy(T->param_begin(), T->param_end(), std::back_inserter(ArgTypes)); in getTrampolineFunctionType() 300 ArgTypes.push_back(ShadowTy); in getTrampolineFunctionType() 303 ArgTypes.push_back(ShadowPtrTy); in getTrampolineFunctionType() [all …]
|
| /freebsd-9-stable/sys/contrib/dev/acpica/debugger/ |
| D | dbexec.c | 891 LocalInfo.Types = LocalInfo.ArgTypes; in AcpiDbMethodThread() 1061 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; in AcpiDbCreateExecutionThreads() 1062 AcpiGbl_DbMethodInfo.ArgTypes[0] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads() 1063 AcpiGbl_DbMethodInfo.ArgTypes[1] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads() 1064 AcpiGbl_DbMethodInfo.ArgTypes[2] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads()
|
| /freebsd-9-stable/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;
|
| D | type_traits | 140 template <class Fn, class... ArgTypes> class result_of<Fn(ArgTypes...)>; 197 template <class F, class... ArgTypes> 198 using result_of_t = typename result_of<F(ArgTypes...)>::type; // C++14
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Rewrite/Frontend/ |
| D | RewriteModernObjC.cpp | 429 SmallVectorImpl<QualType> &ArgTypes, 2735 SmallVector<QualType, 4> ArgTypes; in RewriteObjCBoxedExpr() local 2736 ArgTypes.push_back(Context->getObjCIdType()); in RewriteObjCBoxedExpr() 2737 ArgTypes.push_back(Context->getObjCSelType()); in RewriteObjCBoxedExpr() 2740 ArgTypes.push_back((*PI)->getType()); in RewriteObjCBoxedExpr() 2756 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic()); in RewriteObjCBoxedExpr() 2872 SmallVector<QualType, 4> ArgTypes; in RewriteObjCArrayLiteralExpr() local 2873 ArgTypes.push_back(Context->getObjCIdType()); in RewriteObjCArrayLiteralExpr() 2874 ArgTypes.push_back(Context->getObjCSelType()); in RewriteObjCArrayLiteralExpr() 2877 ArgTypes.push_back((*PI)->getType()); in RewriteObjCArrayLiteralExpr() [all …]
|
| D | RewriteObjC.cpp | 363 SmallVectorImpl<QualType> &ArgTypes, 2627 SmallVectorImpl<QualType> &ArgTypes, in SynthMsgSendStretCallExpr() argument 2639 QualType castType = getSimpleFunctionType(returnType, ArgTypes, in SynthMsgSendStretCallExpr() 2980 SmallVector<QualType, 8> ArgTypes; in SynthMessageExpr() local 2985 ArgTypes.push_back(Context->getPointerType(getSuperStructType())); in SynthMessageExpr() 2987 ArgTypes.push_back(Context->getObjCIdType()); in SynthMessageExpr() 2988 ArgTypes.push_back(Context->getObjCSelType()); in SynthMessageExpr() 2998 ArgTypes.push_back(t); in SynthMessageExpr() 3025 getSimpleFunctionType(returnType, ArgTypes, MD ? MD->isVariadic() : true); in SynthMessageExpr() 3046 ArgTypes, MsgExprs, in SynthMessageExpr() [all …]
|
| /freebsd-9-stable/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...)>;
|
| /freebsd-9-stable/contrib/llvm/lib/Transforms/Utils/ |
| D | CloneFunction.cpp | 165 std::vector<Type*> ArgTypes; in CloneFunction() local 173 ArgTypes.push_back(I->getType()); in CloneFunction() 177 ArgTypes, F->getFunctionType()->isVarArg()); in CloneFunction()
|
| D | CodeExtractor.cpp | 452 std::vector<Type*> ArgTypes; in emitCallAndSwitchStatement() local 455 ArgTypes.push_back((*v)->getType()); in emitCallAndSwitchStatement() 458 Type *StructArgTy = StructType::get(newFunction->getContext(), ArgTypes); in emitCallAndSwitchStatement()
|
| /freebsd-9-stable/sys/contrib/dev/acpica/include/ |
| D | acstruct.h | 96 UINT32 ArgTypes; member
|
| D | aclocal.h | 1210 ACPI_OBJECT_TYPE ArgTypes[4]; member
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/Sema/ |
| D | SemaExprCXX.cpp | 1709 SmallVector<QualType, 4> ArgTypes; in FindAllocationFunctions() local 1710 ArgTypes.push_back(Context.VoidPtrTy); in FindAllocationFunctions() 1712 ArgTypes.push_back(Proto->getArgType(I)); in FindAllocationFunctions() 1718 = Context.getFunctionType(Context.VoidTy, ArgTypes, EPI); in FindAllocationFunctions()
|
| D | SemaExpr.cpp | 1277 ArrayRef<ParsedType> ArgTypes, in ActOnGenericSelectionExpr() argument 1279 unsigned NumAssocs = ArgTypes.size(); in ActOnGenericSelectionExpr() 1284 if (ArgTypes[i]) in ActOnGenericSelectionExpr() 1285 (void) GetTypeFromParser(ArgTypes[i], &Types[i]); in ActOnGenericSelectionExpr() 12829 SmallVector<QualType, 8> ArgTypes; in VisitCallExpr() local 12831 ArgTypes.reserve(E->getNumArgs()); in VisitCallExpr() 12840 ArgTypes.push_back(ArgType); in VisitCallExpr() 12842 ParamTypes = ArgTypes; in VisitCallExpr()
|
| D | SemaTemplateDeduction.cpp | 4136 SmallVectorImpl<QualType> &ArgTypes) { in AddImplicitObjectParameterType() argument 4151 ArgTypes.push_back(ArgTy); in AddImplicitObjectParameterType()
|
| D | SemaDecl.cpp | 2728 SmallVector<QualType, 16> ArgTypes; in MergeFunctionDecl() local 2745 ArgTypes.push_back(NewParm->getType()); in MergeFunctionDecl() 2752 ArgTypes.push_back(NewParm->getType()); in MergeFunctionDecl() 2769 New->setType(Context.getFunctionType(MergedReturn, ArgTypes, in MergeFunctionDecl()
|
| /freebsd-9-stable/contrib/llvm/tools/clang/lib/AST/ |
| D | ASTContext.cpp | 7790 SmallVector<QualType, 8> ArgTypes; in GetBuiltinType() local 7809 *IntegerConstantArgs |= 1 << ArgTypes.size(); in GetBuiltinType() 7815 ArgTypes.push_back(Ty); in GetBuiltinType() 7827 if (ArgTypes.empty() && Variadic) in GetBuiltinType() 7834 return getFunctionType(ResType, ArgTypes, EPI); in GetBuiltinType()
|
| D | ASTImporter.cpp | 1603 SmallVector<QualType, 4> ArgTypes; in VisitFunctionProtoType() local 1610 ArgTypes.push_back(ArgType); in VisitFunctionProtoType() 1642 return Importer.getToContext().getFunctionType(ToResultType, ArgTypes, ToEPI); in VisitFunctionProtoType()
|