Home
last modified time | relevance | path

Searched refs:ArgTypes (Results 1 – 25 of 52) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp389 using ArgTypes = std::vector<Optional<QualType>>; typedef in __anondd300ad00111::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()
1359 "getchar", Signature(ArgTypes{}, RetType{IntTy}), in initFunctionSummaries()
1812 Signature(ArgTypes{IntTy, ConstCharPtrRestrictTy, in initFunctionSummaries()
2509 Signature(ArgTypes{Pthread_tPtrRestrictTy, in initFunctionSummaries()
2550 Signature(ArgTypes{Pthread_mutex_tPtrRestrictTy, in initFunctionSummaries()
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/components/parser/
H A Dpsobject.c212 WalkState->ArgTypes = ARGP_NAMESTRING; in AcpiPsGetAmlOpcode()
277 WalkState->ArgTypes = WalkState->OpInfo->ParseArgs; in AcpiPsGetAmlOpcode()
322 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && in AcpiPsBuildNamedOp()
334 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp()
352 if (!GET_CURRENT_ARG_TYPE (WalkState->ArgTypes)) in AcpiPsBuildNamedOp()
359 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsBuildNamedOp()
640 WalkState->PrevArgTypes = WalkState->ArgTypes; in AcpiPsCompleteOp()
646 &WalkState->ArgTypes, &WalkState->ArgCount); in AcpiPsCompleteOp()
674 &WalkState->ArgTypes, &WalkState->ArgCount); in AcpiPsCompleteOp()
762 WalkState->PrevArgTypes = WalkState->ArgTypes; in AcpiPsCompleteOp()
[all …]
H A Dpsloop.c223 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), Op); in AcpiPsGetArguments()
235 WalkState->ArgTypes = 0; in AcpiPsGetArguments()
242 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && in AcpiPsGetArguments()
264 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); in AcpiPsGetArguments()
275 INCREMENT_ARG_LIST (WalkState->ArgTypes); in AcpiPsGetArguments()
386 WalkState->ArgTypes = 0; in AcpiPsParseLoop()
430 &WalkState->ArgTypes, &WalkState->ArgCount); in AcpiPsParseLoop()
438 WalkState->ArgTypes = WalkState->PrevArgTypes; in AcpiPsParseLoop()
543 if (WalkState->ArgTypes) in AcpiPsParseLoop()
597 WalkState->ArgTypes, WalkState->ArgCount); in AcpiPsParseLoop()
H A Dpsargs.c410 if ((GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) == ARGP_SUPERNAME) || in AcpiPsGetNextNamepath()
411 (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) == ARGP_TARGET)) in AcpiPsGetNextNamepath()
/freebsd-13.1/sys/contrib/dev/acpica/components/executer/
H A Dexresop.c261 UINT32 ArgTypes; in AcpiExResolveOperands() local
277 ArgTypes = OpInfo->RuntimeArgs; in AcpiExResolveOperands()
278 if (ArgTypes == ARGI_INVALID_OPCODE) in AcpiExResolveOperands()
288 Opcode, OpInfo->Name, ArgTypes)); in AcpiExResolveOperands()
297 while (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands()
399 ThisArgType = GET_CURRENT_ARG_TYPE (ArgTypes); in AcpiExResolveOperands()
400 INCREMENT_ARG_LIST (ArgTypes); in AcpiExResolveOperands()
830 if (GET_CURRENT_ARG_TYPE (ArgTypes)) in AcpiExResolveOperands()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Basic/
H A DDirectoryEntry.h122 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 DFileEntry.h208 template <class... ArgTypes>
209 explicit OptionalStorage(in_place_t, ArgTypes &&...Args)
210 : StorageImpl(in_place_t{}, std::forward<ArgTypes>(Args)...) {}
/freebsd-13.1/contrib/llvm-project/libcxx/include/experimental/
H A Dfunctional30 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 Dtype_traits25 template <class F, class... ArgTypes> class invocation_type<F(ArgTypes...)>;
27 template <class F, class... ArgTypes> class raw_invocation_type<F(ArgTypes...)>;
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGGPUBuiltin.cpp25 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 DObjectFilePCHContainerOperations.cpp104 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 DCGCall.cpp401 SmallVector<CanQualType, 16> ArgTypes; in arrangeCXXConstructorCall() local
416 ? ArgTypes.front() in arrangeCXXConstructorCall()
428 ArgTypes.size()); in arrangeCXXConstructorCall()
1629 ArgTypes[IRFunctionArgs.getSRetArgNo()] = in GetFunctionType()
1665 ArgTypes[FirstIRArg] = LTy->getPointerTo( in GetFunctionType()
1687 ArgTypes[FirstIRArg] = argType; in GetFunctionType()
4041 return llvm::any_of(ArgTypes, [&](QualType Ty) { in hasInAllocaArgs()
4068 SmallVector<QualType, 16> ArgTypes; in EmitCallArgs() local
4102 for (QualType Ty : ArgTypes) { in EmitCallArgs()
4161 if (hasInAllocaArgs(CGM, ExplicitCC, ArgTypes)) { in EmitCallArgs()
[all …]
/freebsd-13.1/contrib/llvm-project/libcxx/include/
H A Dfunctional57 template <class... ArgTypes>
59 operator() (ArgTypes&&...) const;
377 template<class R, class... ArgTypes>
378 class function<R(ArgTypes...)>
424 R operator()(ArgTypes...) const;
440 template <class R, class ... ArgTypes>
443 template <class R, class ... ArgTypes>
446 template <class R, class ... ArgTypes>
449 template <class R, class ... ArgTypes>
453 template <class R, class ... ArgTypes>
[all …]
/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c758 LocalInfo.Types = LocalInfo.ArgTypes; in AcpiDbMethodThread()
897 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; in AcpiDbCreateExecutionThread()
906 AcpiGbl_DbMethodInfo.ArgTypes[i] = *Types; in AcpiDbCreateExecutionThread()
1056 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; in AcpiDbCreateExecutionThreads()
1057 AcpiGbl_DbMethodInfo.ArgTypes[0] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads()
1058 AcpiGbl_DbMethodInfo.ArgTypes[1] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads()
1059 AcpiGbl_DbMethodInfo.ArgTypes[2] = ACPI_TYPE_INTEGER; in AcpiDbCreateExecutionThreads()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DR600OpenCLImageTypeLoweringPass.cpp258 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()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/
H A DOptional.h253 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 DSmallVector.h392 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 DAPFloat.h718 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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DEntryExitInstrumenter.cpp44 Type *ArgTypes[] = {Type::getInt8PtrTy(C), Type::getInt8PtrTy(C)}; in insertCall() local
47 Func, FunctionType::get(Type::getVoidTy(C), ArgTypes, false)); in insertCall()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DDataFlowSanitizer.cpp794 ArgTypes.push_back(PrimitiveShadowPtrTy); in getArgsFunctionType()
803 SmallVector<Type *, 4> ArgTypes; in getTrampolineFunctionType() local
804 ArgTypes.push_back(T->getPointerTo()); in getTrampolineFunctionType()
809 ArgTypes.push_back(PrimitiveShadowPtrTy); in getTrampolineFunctionType()
814 ArgTypes.push_back(OriginPtrTy); in getTrampolineFunctionType()
821 SmallVector<Type *, 4> ArgTypes; in getCustomFunctionType() local
838 ArgTypes.push_back(ParamType); in getCustomFunctionType()
842 ArgTypes.push_back(PrimitiveShadowTy); in getCustomFunctionType()
851 ArgTypes.push_back(OriginTy); in getCustomFunctionType()
853 ArgTypes.push_back(OriginPtrTy); in getCustomFunctionType()
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp2668 SmallVector<QualType, 4> ArgTypes; in RewriteObjCBoxedExpr() local
2789 SmallVector<QualType, 4> ArgTypes; in RewriteObjCArrayLiteralExpr() local
2934 SmallVector<QualType, 8> ArgTypes; in RewriteObjCDictionaryLiteralExpr() local
2944 ArgTypes.push_back(T); in RewriteObjCDictionaryLiteralExpr()
3482 SmallVector<QualType, 8> ArgTypes; in SynthMessageExpr() local
3499 ArgTypes.push_back(t); in SynthMessageExpr()
4531 SmallVector<QualType, 8> ArgTypes; in convertFunctionTypeOfBlocks() local
4541 ArgTypes.push_back(t); in convertFunctionTypeOfBlocks()
4596 SmallVector<QualType, 8> ArgTypes; in SynthesizeBlockCall() local
4599 ArgTypes.push_back(PtrBlock); in SynthesizeBlockCall()
[all …]
H A DRewriteObjC.cpp2608 QualType castType = getSimpleFunctionType(returnType, ArgTypes, in SynthMsgSendStretCallExpr()
2912 SmallVector<QualType, 8> ArgTypes; in SynthMessageExpr() local
2919 ArgTypes.push_back(Context->getObjCIdType()); in SynthMessageExpr()
2920 ArgTypes.push_back(Context->getObjCSelType()); in SynthMessageExpr()
2929 ArgTypes.push_back(t); in SynthMessageExpr()
3697 SmallVector<QualType, 8> ArgTypes; in convertFunctionTypeOfBlocks() local
3707 ArgTypes.push_back(t); in convertFunctionTypeOfBlocks()
3714 FuncType = getSimpleFunctionType(Res, ArgTypes); in convertFunctionTypeOfBlocks()
3764 SmallVector<QualType, 8> ArgTypes; in SynthesizeBlockCall() local
3767 ArgTypes.push_back(PtrBlock); in SynthesizeBlockCall()
[all …]
/freebsd-13.1/contrib/googletest/googlemock/include/gmock/
H A Dgmock-generated-function-mockers.h.pump322 $var ArgTypes = [[$for j, [[A$j]]]]
326 class MockFunction<R($ArgTypes)> {
330 MOCK_METHOD$i[[]]_T(Call, R($ArgTypes));
333 ::std::function<R($ArgTypes)> AsStdFunction() {
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Dacstruct.h200 UINT32 ArgTypes; member
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/
H A DConstructionContext.h268 template <typename T, typename... ArgTypes>
269 static T *create(BumpVectorContext &C, ArgTypes... Args) { in create()

123