Home
last modified time | relevance | path

Searched refs:param_type (Results 1 – 11 of 11) sorted by relevance

/openbsd/src/gnu/llvm/libcxx/include/
Drandom453 class param_type
458 explicit param_type(IntType a = 0,
464 friend bool operator==(const param_type& x, const param_type& y);
465 friend bool operator!=(const param_type& x, const param_type& y);
474 explicit uniform_int_distribution(const param_type& parm);
479 template<class URNG> result_type operator()(URNG& g, const param_type& parm);
485 param_type param() const;
486 void param(const param_type& parm);
516 class param_type
521 explicit param_type(RealType a = 0,
[all …]
/openbsd/src/gnu/usr.bin/binutils/gdb/
Dinfcall.c85 value_arg_coerce (struct value *arg, struct type *param_type, in value_arg_coerce() argument
90 = param_type ? check_typedef (param_type) : arg_type; in value_arg_coerce()
99 VALUE_TYPE (arg) = param_type; in value_arg_coerce()
495 struct type *param_type; in call_function_by_hand() local
507 param_type = TYPE_FIELD_TYPE (ftype, i); in call_function_by_hand()
509 param_type = NULL; in call_function_by_hand()
511 args[i] = value_arg_coerce (args[i], param_type, prototyped); in call_function_by_hand()
526 if (param_type != NULL && TYPE_CODE (ftype) != TYPE_CODE_METHOD) in call_function_by_hand()
529 if (TYPE_CODE (param_type) == TYPE_CODE_PTR) in call_function_by_hand()
530 if (TYPE_CODE (TYPE_TARGET_TYPE (param_type)) == TYPE_CODE_FUNC) in call_function_by_hand()
DChangeLog-19982392 * valops.c (call_function_by_hand): Assign to param_type only
2399 * valops.c (call_function_by_hand): Make sure param_type is
DChangeLog-19954105 * valops.c (value_arg_coerce): Now takes param_type argument.
DChangeLog-200310330 "n_method_args". Localize "param_type"'s declaration to the loop
10333 Rationalize code using "param_type".
/openbsd/src/lib/libcrypto/pkcs12/
Dp12_npas.c75 int param_type; in alg_get() local
82 X509_ALGOR_get0(&aobj, &param_type, &param, alg); in alg_get()
83 if (param_type != V_ASN1_SEQUENCE) in alg_get()
/openbsd/src/lib/libcrypto/ec/
Decx_methods.c581 int param_type; in ecx_cms_sign_or_verify() local
586 X509_ALGOR_get0(&obj, &param_type, NULL, signatureAlgorithm); in ecx_cms_sign_or_verify()
589 if (param_type != V_ASN1_UNDEF) in ecx_cms_sign_or_verify()
786 int nid, param_type; in ecx_item_verify() local
788 X509_ALGOR_get0(&aobj, &param_type, NULL, algor); in ecx_item_verify()
792 if (nid != NID_ED25519 || param_type != V_ASN1_UNDEF) { in ecx_item_verify()
/openbsd/src/usr.bin/openssl/
Dpkcs12.c1008 int param_type; in alg_print() local
1011 X509_ALGOR_get0(&aobj, &param_type, &param, alg); in alg_print()
1012 if (param_type == V_ASN1_SEQUENCE) in alg_print()
/openbsd/src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
DPdbAstBuilder.cpp1084 TypeIndex param_type; in CreateFunctionParameters() local
1090 param_type = reg.Type; in CreateFunctionParameters()
1097 param_type = reg.Index; in CreateFunctionParameters()
1106 param_type = local.Type; in CreateFunctionParameters()
1122 clang::QualType qt = GetOrCreateType(param_type); in CreateFunctionParameters()
/openbsd/src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.h422 const char *name, const CompilerType &param_type,
DTypeSystemClang.cpp2245 const char *name, const CompilerType &param_type, int storage, in CreateParameterDeclaration() argument
2252 decl->setType(ClangUtil::GetQualType(param_type)); in CreateParameterDeclaration()