/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
H A D | StdLibraryFunctionsChecker.cpp | 389 using ArgTypes = std::vector<Optional<QualType>>; typedef in __anon6255e2070111::StdLibraryFunctionsChecker 411 Signature(ArgTypes ArgTys, RetType RetTy) { in Signature() 1208 "isalnum", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() 1226 "isalpha", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() 1237 "isascii", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() 1244 "isblank", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() 1251 "iscntrl", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() 1258 "isdigit", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() 1265 "isgraph", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() 1272 "islower", Signature(ArgTypes{IntTy}, RetType{IntTy}), in initFunctionSummaries() [all …]
|
/netbsd-src/sys/external/bsd/acpica/dist/parser/ |
H A D | psobject.c | 104 WalkState->ArgTypes = ARGP_NAMESTRING; in AcpiPsGetAmlOpcode() 169 WalkState->ArgTypes = WalkState->OpInfo->ParseArgs; in AcpiPsGetAmlOpcode() 214 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && in AcpiPsBuildNamedOp() 215 (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) != ARGP_NAME)) in AcpiPsBuildNamedOp() 219 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); in AcpiPsBuildNamedOp() 226 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp() 244 if (!GET_CURRENT_ARG_TYPE (WalkState->ArgTypes)) in AcpiPsBuildNamedOp() 251 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp() 532 WalkState->PrevArgTypes = WalkState->ArgTypes; in AcpiPsCompleteOp() 538 &WalkState->ArgTypes, &WalkState->ArgCount); in AcpiPsCompleteOp() [all …]
|
H A D | psloop.c | 115 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), Op); in AcpiPsGetArguments() 127 WalkState->ArgTypes = 0; in AcpiPsGetArguments() 134 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && in AcpiPsGetArguments() 156 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); in AcpiPsGetArguments() 167 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsGetArguments() 278 WalkState->ArgTypes = 0; in AcpiPsParseLoop() 321 &WalkState->ArgTypes, &WalkState->ArgCount); in AcpiPsParseLoop() 329 WalkState->ArgTypes = WalkState->PrevArgTypes; in AcpiPsParseLoop() 434 if (WalkState->ArgTypes) in AcpiPsParseLoop() 488 WalkState->ArgTypes, WalkState->ArgCount); in AcpiPsParseLoop()
|
H A D | psargs.c | 306 if ((GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) == ARGP_SUPERNAME) || in AcpiPsGetNextNamepath() 307 (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) == ARGP_TARGET)) in AcpiPsGetNextNamepath()
|
/netbsd-src/sys/external/bsd/acpica/dist/executer/ |
H A D | exresop.c | 153 UINT32 ArgTypes; in AcpiExResolveOperands() local 169 ArgTypes = OpInfo->RuntimeArgs; in AcpiExResolveOperands() 170 if (ArgTypes == ARGI_INVALID_OPCODE) in AcpiExResolveOperands() 180 Opcode, OpInfo->Name, ArgTypes)); in AcpiExResolveOperands() 189 while (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands() 291 ThisArgType = GET_CURRENT_ARG_TYPE (ArgTypes); in AcpiExResolveOperands() 292 INCREMENT_ARG_LIST (ArgTypes); in AcpiExResolveOperands() 722 if (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/experimental/ |
H A D | functional | 30 template<class R, class... ArgTypes> class function<R(ArgTypes...)>; 32 template<class R, class... ArgTypes> 33 void swap(function<R(ArgTypes...)>&, function<R(ArgTypes...)>&); 35 template<class R, class... ArgTypes> 36 bool operator==(const function<R(ArgTypes...)>&, nullptr_t) noexcept; 37 template<class R, class... ArgTypes> 38 bool operator==(nullptr_t, const function<R(ArgTypes...)>&) noexcept; 39 template<class R, class... ArgTypes> 40 bool operator!=(const function<R(ArgTypes...)>&, nullptr_t) noexcept; 41 template<class R, class... ArgTypes> [all …]
|
H A D | type_traits | 25 template <class F, class... ArgTypes> class invocation_type<F(ArgTypes...)>; 27 template <class F, class... ArgTypes> class raw_invocation_type<F(ArgTypes...)>;
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
H A D | DirectoryEntry.h | 122 template <class... ArgTypes> 123 explicit MapEntryOptionalStorage(llvm::in_place_t, ArgTypes &&...Args) 124 : MaybeRef(std::forward<ArgTypes>(Args)...) {} 172 template <class... ArgTypes> 173 explicit OptionalStorage(in_place_t, ArgTypes &&...Args) 174 : StorageImpl(in_place_t{}, std::forward<ArgTypes>(Args)...) {}
|
H A D | FileEntry.h | 208 template <class... ArgTypes> 209 explicit OptionalStorage(in_place_t, ArgTypes &&...Args) 210 : StorageImpl(in_place_t{}, std::forward<ArgTypes>(Args)...) {}
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
H A D | CGGPUBuiltin.cpp | 25 llvm::Type *ArgTypes[] = {llvm::Type::getInt8PtrTy(M.getContext()), in GetVprintfDeclaration() local 28 llvm::Type::getInt32Ty(M.getContext()), ArgTypes, false); in GetVprintfDeclaration() 99 llvm::SmallVector<llvm::Type *, 8> ArgTypes; in EmitNVPTXDevicePrintfCallExpr() local 101 ArgTypes.push_back(Args[I].getRValue(*this).getScalarVal()->getType()); in EmitNVPTXDevicePrintfCallExpr() 108 llvm::Type *AllocaTy = llvm::StructType::create(ArgTypes, "printf_args"); in EmitNVPTXDevicePrintfCallExpr()
|
H A D | ObjectFilePCHContainerOperations.cpp | 104 SmallVector<QualType, 16> ArgTypes; in VisitFunctionDecl() local 106 ArgTypes.push_back(i->getType()); in VisitFunctionDecl() 108 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes, in VisitFunctionDecl() 120 SmallVector<QualType, 16> ArgTypes; in VisitObjCMethodDecl() local 121 ArgTypes.push_back(D->getSelfType(Ctx, D->getClassInterface(), in VisitObjCMethodDecl() 123 ArgTypes.push_back(Ctx.getObjCSelType()); in VisitObjCMethodDecl() 125 ArgTypes.push_back(i->getType()); in VisitObjCMethodDecl() 127 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes, in VisitObjCMethodDecl()
|
H A D | CGCall.cpp | 400 SmallVector<CanQualType, 16> ArgTypes; in arrangeCXXConstructorCall() local 402 ArgTypes.push_back(Context.getCanonicalParamType(Arg.Ty)); in arrangeCXXConstructorCall() 415 ? ArgTypes.front() in arrangeCXXConstructorCall() 427 ArgTypes.size()); in arrangeCXXConstructorCall() 430 /*chainCall=*/false, ArgTypes, Info, in arrangeCXXConstructorCall() 1621 SmallVector<llvm::Type*, 8> ArgTypes(IRFunctionArgs.totalIRArgs()); in GetFunctionType() local 1628 ArgTypes[IRFunctionArgs.getSRetArgNo()] = in GetFunctionType() 1636 ArgTypes[IRFunctionArgs.getInallocaArgNo()] = ArgStruct->getPointerTo(); in GetFunctionType() 1648 ArgTypes[IRFunctionArgs.getPaddingArgNo(ArgNo)] = in GetFunctionType() 1664 ArgTypes[FirstIRArg] = LTy->getPointerTo( in GetFunctionType() [all …]
|
/netbsd-src/sys/external/bsd/acpica/dist/debugger/ |
H A D | dbexec.c | 652 LocalInfo.Types = LocalInfo.ArgTypes; in AcpiDbMethodThread() 791 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; in AcpiDbCreateExecutionThread() 800 AcpiGbl_DbMethodInfo.ArgTypes[i] = *Types; in AcpiDbCreateExecutionThread() 950 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; in AcpiDbCreateExecutionThreads() 951 AcpiGbl_DbMethodInfo.ArgTypes[0] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads() 952 AcpiGbl_DbMethodInfo.ArgTypes[1] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads() 953 AcpiGbl_DbMethodInfo.ArgTypes[2] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
H A D | R600OpenCLImageTypeLoweringPass.cpp | 258 SmallVector<Type *, 8> ArgTypes; in addImplicitArgs() local 266 ArgTypes.push_back(FT->getParamType(i)); in addImplicitArgs() 274 ArgTypes.push_back(ImageSizeType); in addImplicitArgs() 279 ArgTypes.push_back(ImageFormatType); in addImplicitArgs() 290 auto NewFT = FunctionType::get(FT->getReturnType(), ArgTypes, false); in addImplicitArgs()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
H A D | Optional.h | 253 template <typename... ArgTypes> 254 constexpr Optional(in_place_t, ArgTypes &&...Args) in Optional() 255 : Storage(in_place, std::forward<ArgTypes>(Args)...) {} in Optional() 264 template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { in emplace() 265 Storage.emplace(std::forward<ArgTypes>(Args)...); in emplace()
|
H A D | SmallVector.h | 392 template <typename... ArgTypes> T &growAndEmplaceBack(ArgTypes &&... Args) { in growAndEmplaceBack() 396 ::new ((void *)(NewElts + this->size())) T(std::forward<ArgTypes>(Args)...); in growAndEmplaceBack() 537 template <typename... ArgTypes> T &growAndEmplaceBack(ArgTypes &&... Args) { in growAndEmplaceBack() 541 push_back(T(std::forward<ArgTypes>(Args)...)); in growAndEmplaceBack() 908 template <typename... ArgTypes> reference emplace_back(ArgTypes &&... Args) { in emplace_back() 910 return this->growAndEmplaceBack(std::forward<ArgTypes>(Args)...); in emplace_back() 912 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...); in emplace_back()
|
H A D | APFloat.h | 718 template <typename... ArgTypes> 719 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { in Storage() 721 new (&IEEE) IEEEFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage() 725 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...); in Storage()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
H A D | EntryExitInstrumenter.cpp | 44 Type *ArgTypes[] = {Type::getInt8PtrTy(C), Type::getInt8PtrTy(C)}; in insertCall() local 47 Func, FunctionType::get(Type::getVoidTy(C), ArgTypes, false)); in insertCall()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | DataFlowSanitizer.cpp | 830 SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end()); in getArgsFunctionType() local 831 ArgTypes.append(T->getNumParams(), PrimitiveShadowTy); in getArgsFunctionType() 833 ArgTypes.push_back(PrimitiveShadowPtrTy); in getArgsFunctionType() 837 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); in getArgsFunctionType() 842 SmallVector<Type *, 4> ArgTypes; in getTrampolineFunctionType() local 843 ArgTypes.push_back(T->getPointerTo()); in getTrampolineFunctionType() 844 ArgTypes.append(T->param_begin(), T->param_end()); in getTrampolineFunctionType() 845 ArgTypes.append(T->getNumParams(), PrimitiveShadowTy); in getTrampolineFunctionType() 848 ArgTypes.push_back(PrimitiveShadowPtrTy); in getTrampolineFunctionType() 851 ArgTypes.append(T->getNumParams(), OriginTy); in getTrampolineFunctionType() [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
H A D | RewriteModernObjC.cpp | 419 SmallVectorImpl<QualType> &ArgTypes, 2668 SmallVector<QualType, 4> ArgTypes; in RewriteObjCBoxedExpr() local 2669 ArgTypes.push_back(Context->getObjCClassType()); in RewriteObjCBoxedExpr() 2670 ArgTypes.push_back(Context->getObjCSelType()); in RewriteObjCBoxedExpr() 2672 ArgTypes.push_back(PI->getType()); in RewriteObjCBoxedExpr() 2687 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic()); in RewriteObjCBoxedExpr() 2789 SmallVector<QualType, 4> ArgTypes; in RewriteObjCArrayLiteralExpr() local 2790 ArgTypes.push_back(Context->getObjCClassType()); in RewriteObjCArrayLiteralExpr() 2791 ArgTypes.push_back(Context->getObjCSelType()); in RewriteObjCArrayLiteralExpr() 2793 ArgTypes.push_back(PI->getType()); in RewriteObjCArrayLiteralExpr() [all …]
|
H A D | RewriteObjC.cpp | 356 SmallVectorImpl<QualType> &ArgTypes, 2596 SmallVectorImpl<QualType> &ArgTypes, in SynthMsgSendStretCallExpr() argument 2608 QualType castType = getSimpleFunctionType(returnType, ArgTypes, in SynthMsgSendStretCallExpr() 2922 SmallVector<QualType, 8> ArgTypes; in SynthMessageExpr() local 2927 ArgTypes.push_back(Context->getPointerType(getSuperStructType())); in SynthMessageExpr() 2929 ArgTypes.push_back(Context->getObjCIdType()); in SynthMessageExpr() 2930 ArgTypes.push_back(Context->getObjCSelType()); in SynthMessageExpr() 2939 ArgTypes.push_back(t); in SynthMessageExpr() 2966 getSimpleFunctionType(returnType, ArgTypes, MD ? MD->isVariadic() : true); in SynthMessageExpr() 2986 ArgTypes, MsgExprs, in SynthMessageExpr() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/ |
H A D | ExceptionDemo.cpp | 144 typedef std::vector<llvm::Type*> ArgTypes; typedef 164 const ArgTypes &theArgTypes, in createFunction() 1084 ArgTypes argTypes; in createCatchWrappedInvokeFunction() 1347 ArgTypes unwindArgTypes; in createThrowExceptionFunction() 1691 ArgTypes argTypes; in createStandardUtilityFunctions()
|
/netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
H A D | functional | 57 template <class... ArgTypes> 58 typename result_of<T&(ArgTypes&&...)>::type 59 operator() (ArgTypes&&...) const; 396 template<class R, class... ArgTypes> 397 class function<R(ArgTypes...)> 398 : public unary_function<T1, R> // iff sizeof...(ArgTypes) == 1 and 399 // ArgTypes contains T1 400 : public binary_function<T1, T2, R> // iff sizeof...(ArgTypes) == 2 and 401 // ArgTypes contains T1 and T2 443 R operator()(ArgTypes...) const; [all …]
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
H A D | ConstructionContext.h | 268 template <typename T, typename... ArgTypes> 269 static T *create(BumpVectorContext &C, ArgTypes... Args) { in create()
|
/netbsd-src/sys/external/bsd/acpica/dist/include/ |
H A D | acstruct.h | 92 UINT32 ArgTypes; member
|