| /freebsd/crypto/libecc/src/arithmetic_tests/ |
| H A D | arithmetic_tests.c | 346 #define PARAMETERS_SANITY_CHECK(test_num, param_types, param_io) do {\ argument 348 assert(sizeof(param_types) == sizeof(param_io));\ 349 for(i = 0; i < sizeof(param_types)-1; i++){\ 350 …if((param_types[i] != 'c') && (param_types[i] != 'f') && (param_types[i] != 'n') && (param_types[i… 358 if((param_io[i] == 'O') && (param_types[i] != 'u') && (param_types[i] != 's')){\
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IntrinsicsHexagon.td | 19 list<LLVMType> param_types, 22 DefaultAttrsIntrinsic<ret_types, param_types, properties>; 27 list<LLVMType> param_types, 29 : DefaultAttrsIntrinsic<ret_types, param_types, properties>;
|
| H A D | IntrinsicsLoongArch.td | 55 class BaseInt<list<LLVMType> ret_types, list<LLVMType> param_types, 57 : Intrinsic<ret_types, param_types, intr_properties>, 139 class VecInt<list<LLVMType> ret_types, list<LLVMType> param_types, 141 : Intrinsic<ret_types, param_types, intr_properties>, 144 class DefaultAttrsVecInt<list<LLVMType> ret_types, list<LLVMType> param_types, 146 : DefaultAttrsIntrinsic<ret_types, param_types, intr_properties>,
|
| H A D | IntrinsicsPowerPC.td | 243 list<LLVMType> param_types, 246 DefaultAttrsIntrinsic<ret_types, param_types, properties>; 250 list<LLVMType> param_types, 253 DefaultAttrsIntrinsic<ret_types, param_types, properties>;
|
| H A D | Intrinsics.td | 692 list<LLVMType> param_types = [], 700 list<LLVMType> ParamTypes = param_types; 713 list<LLVMType> param_types = [], 717 : Intrinsic<ret_types, param_types,
|
| H A D | IntrinsicsNVVM.td | 2006 list<LLVMType> param_types, 2011 !listconcat(param_types, flags), 2014 ImmArg<ArgIndex<!add(i, !size(param_types))>>))>;
|
| /freebsd/contrib/llvm-project/clang/lib/Index/ |
| H A D | USRGeneration.cpp | 276 for (QualType PT : FPT->param_types()) { in VisitFunctionDecl() 893 for (const auto &I : FT->param_types()) { in VisitType()
|
| /freebsd/contrib/llvm-project/lldb/tools/lldb-rpc/lldb-rpc-gen/server/ |
| H A D | RPCServerSourceEmitter.cpp | 440 for (QualType ParamType : FuncProtoType->param_types()) { in EmitCallbackFunction()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Mangle.cpp | 247 for (const auto &AT : Proto->param_types()) { in mangleName()
|
| H A D | ASTContext.cpp | 3442 for (QualType Param : FPT->param_types()) { in encodeTypeForFunctionPointerAuth() 3836 SmallVector<QualType, 16> Args(Proto->param_types().size()); in getFunctionTypeWithoutPtrSizes() 3838 Args[i] = removePtrSizeAddrSpace(Proto->param_types()[i]); in getFunctionTypeWithoutPtrSizes() 3860 return getFunctionType(Proto->getReturnType(), Proto->param_types(), EPI); in getFunctionTypeWithoutParamABIs() 9443 for (const auto &I : FPT->param_types()) in getObjCEncodingForTypeImpl() 14131 auto P = getCommonTypes(Ctx, FX->param_types(), FY->param_types(), in getCommonNonSugarTypeNode()
|
| H A D | ASTDiagnostic.cpp | 97 for (QualType SugarPT : FPT->param_types()) { in desugarForDiagnostic()
|
| H A D | Type.cpp | 4773 for (const auto &ai : FPT->param_types()) in computeCachedProperties() 4872 for (const auto &ai : FPT->param_types()) in computeTypeLinkageInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 2429 std::vector<CompilerType> param_types; in ConstructDemangledNameFromDWARF() local 2445 has_template_params, param_types, param_names); in ConstructDemangledNameFromDWARF() 2447 for (size_t i = 0; i < param_types.size(); i++) { in ConstructDemangledNameFromDWARF() 2450 sstr << param_types[i].GetTypeName(); in ConstructDemangledNameFromDWARF()
|
| /freebsd/crypto/openssl/crypto/ |
| H A D | provider_core.c | 2244 static const OSSL_PARAM param_types[] = { variable 2318 return param_types; in core_gettable_params()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/ |
| H A D | RewriteObjC.cpp | 547 for (const auto &I : fproto->param_types()) in RewriteBlocksInFunctionProtoType() 3694 for (auto &I : FTP->param_types()) { in convertFunctionTypeOfBlocks() 3761 for (auto &I : FTP->param_types()) { in SynthesizeBlockCall() 3957 for (const auto &I : FTP->param_types()) in PointerTypeTakesAnyBlockArguments() 3975 for (const auto &I : FTP->param_types()) { in PointerTypeTakesAnyObjCQualifiedType()
|
| H A D | RewriteModernObjC.cpp | 612 for (const auto &I : fproto->param_types()) in RewriteBlocksInFunctionProtoType() 4518 for (auto &I : FTP->param_types()) { in convertFunctionTypeOfBlocks() 4583 for (auto &I : FTP->param_types()) { in SynthesizeBlockCall() 4793 for (const auto &I : FTP->param_types()) in PointerTypeTakesAnyBlockArguments() 4811 for (const auto &I : FTP->param_types()) { in PointerTypeTakesAnyObjCQualifiedType()
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | Sema.cpp | 2286 for (const auto &ParamTy : FPTy->param_types()) in checkTypeSupport()
|
| H A D | SemaTemplateDeduction.cpp | 1983 S, TemplateParams, FPP->param_types(), FPA->param_types(), Info, in DeduceTemplateArgumentsByTypeMatch()
|
| H A D | SemaOverload.cpp | 3469 return FunctionParamTypesAreEqual(OldType->param_types(), in FunctionParamTypesAreEqual() 3470 NewType->param_types(), ArgPos, Reversed); in FunctionParamTypesAreEqual() 3490 return FunctionParamTypesAreEqual(OldPT->param_types().slice(OldIgnore), in FunctionNonObjectParamTypesAreEqual() 3491 NewPT->param_types().slice(NewIgnore), in FunctionNonObjectParamTypesAreEqual()
|
| H A D | SemaLookup.cpp | 3224 for (const auto &Arg : Proto->param_types()) in addAssociatedClassesAndNamespaces()
|
| H A D | SemaDecl.cpp | 4251 for (const auto &ParamType : OldProto->param_types()) { in MergeFunctionDecl() 10432 for (const auto &AI : FT->param_types()) { in ActOnFunctionDeclarator() 12382 for (QualType T : FPT->param_types()) in CheckFunctionDeclaration()
|
| H A D | SemaExpr.cpp | 6307 for (QualType ParamType : FT->param_types()) { in rewriteBuiltinFunctionDecl() 16403 for (const auto &I : Fn->param_types()) { in ActOnBlockArguments() 21063 for (const auto &AI : FT->param_types()) { in resolveDecl()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | RecursiveASTVisitor.h | 1080 for (const auto &A : T->param_types()) {
|
| H A D | Type.h | 5595 ArrayRef<QualType> param_types() const {
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 1755 for (const QualType &ParamType : FPT->param_types()) in CreateType() 4598 for (QualType ParamType : FPT->param_types()) in getOrCreateFunctionType()
|