Home
last modified time | relevance | path

Searched refs:parameter (Results 1 – 25 of 815) sorted by relevance

12345678910>>...33

/openbsd-src/gnu/usr.bin/texinfo/util/
H A Dgdoc355 my ($parameter, $section);
362 foreach $parameter (@{$args{'parameterlist'}}) {
363 print $args{'parametertypes'}{$parameter}." \@var{".$parameter."}";
370 foreach $parameter (@{$args{'parameterlist'}}) {
371 if ($args{'parameters'}{$parameter}) {
372 print "\@var{".$parameter."}: ";
373 output_highlight($args{'parameters'}{$parameter});
388 my ($parameter, $section);
397 foreach $parameter (@{$args{'parameterlist'}}) {
398 print "<i>".$args{'parametertypes'}{$parameter}."</i> <b>".$parameter.
[all …]
/openbsd-src/lib/libcrypto/asn1/
H A Dx_algor.c75 .offset = offsetof(X509_ALGOR, parameter),
188 ASN1_TYPE_free(alg->parameter); in X509_ALGOR_set0_parameter()
189 alg->parameter = NULL; in X509_ALGOR_set0_parameter()
194 if (alg->parameter == NULL) in X509_ALGOR_set0_parameter()
195 alg->parameter = ASN1_TYPE_new(); in X509_ALGOR_set0_parameter()
196 if (alg->parameter == NULL) in X509_ALGOR_set0_parameter()
200 ASN1_TYPE_set(alg->parameter, parameter_type, parameter_value); in X509_ALGOR_set0_parameter()
256 if (alg->parameter != NULL) { in X509_ALGOR_get0()
257 type = alg->parameter->type; in X509_ALGOR_get0()
258 value = alg->parameter->value.ptr; in X509_ALGOR_get0()
[all …]
H A Dp5_pbev2.c211 if (!(scheme->parameter = ASN1_TYPE_new())) in PKCS5_pbe2_set()
223 if (EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) { in PKCS5_pbe2_set()
250 if (!(ret->parameter = ASN1_TYPE_new())) in PKCS5_pbe2_set()
258 &ret->parameter->value.sequence)) goto merr; in PKCS5_pbe2_set()
259 ret->parameter->type = V_ASN1_SEQUENCE; in PKCS5_pbe2_set()
340 if (!(keyfunc->parameter = ASN1_TYPE_new())) in PKCS5_pbkdf2_set()
344 &keyfunc->parameter->value.sequence)) in PKCS5_pbkdf2_set()
346 keyfunc->parameter->type = V_ASN1_SEQUENCE; in PKCS5_pbkdf2_set()
/openbsd-src/regress/lib/libcrypto/asn1/
H A Dx509_algor.c45 if (alg->parameter != NULL) { in x509_algor_new_test()
88 if ((old_parameter = alg->parameter) == NULL) { in x509_algor_set0_test()
93 if (alg->parameter->type != V_ASN1_UNDEF) { in x509_algor_set0_test()
96 __func__, V_ASN1_UNDEF, alg->parameter->type); in x509_algor_set0_test()
99 if (alg->parameter->value.ptr != NULL) { in x509_algor_set0_test()
116 if (alg->parameter != old_parameter) { in x509_algor_set0_test()
133 if (alg->parameter == NULL) { in x509_algor_set0_test()
138 if (alg->parameter->type != V_ASN1_UNDEF) { in x509_algor_set0_test()
141 __func__, V_ASN1_UNDEF, alg->parameter->type); in x509_algor_set0_test()
144 if (alg->parameter->value.ptr != NULL) { in x509_algor_set0_test()
[all …]
/openbsd-src/usr.sbin/smtpd/
H A Dsmtpctl.c65 extern int spfwalk(int, struct parameter *);
432 srv_foreach_envelope(struct parameter *argv, int ctl, size_t *total, size_t *ok) in srv_foreach_envelope()
503 do_permission_denied(int argc, struct parameter *argv) in do_permission_denied()
509 do_log_brief(int argc, struct parameter *argv) in do_log_brief()
518 do_log_verbose(int argc, struct parameter *argv) in do_log_verbose()
527 do_monitor(int argc, struct parameter *argv) in do_monitor()
583 do_pause_envelope(int argc, struct parameter *argv) in do_pause_envelope()
594 do_pause_mda(int argc, struct parameter *argv) in do_pause_mda()
601 do_pause_mta(int argc, struct parameter *argv) in do_pause_mta()
608 do_pause_smtp(int argc, struct parameter *arg in do_pause_smtp()
[all...]
H A Dparser.h29 struct parameter { struct
41 int cmd_install(const char *, int (*)(int, struct parameter *)); argument
43 int cmd_show_params(int argc, struct parameter *argv);
/openbsd-src/lib/libcrypto/cms/
H A Dcms_pwri.c150 encalg->parameter = ASN1_TYPE_new(); in CMS_add0_recipient_password()
151 if (!encalg->parameter) { in CMS_add0_recipient_password()
155 if (EVP_CIPHER_param_to_asn1(ctx, encalg->parameter) <= 0) { in CMS_add0_recipient_password()
183 pwri->keyEncryptionAlgorithm->parameter = ASN1_TYPE_new(); in CMS_add0_recipient_password()
184 if (pwri->keyEncryptionAlgorithm->parameter == NULL) in CMS_add0_recipient_password()
188 &pwri->keyEncryptionAlgorithm->parameter->value.sequence)) in CMS_add0_recipient_password()
190 pwri->keyEncryptionAlgorithm->parameter->type = V_ASN1_SEQUENCE; in CMS_add0_recipient_password()
357 if (algtmp->parameter != NULL && in cms_RecipientInfo_pwri_crypt()
358 algtmp->parameter->type == V_ASN1_SEQUENCE && in cms_RecipientInfo_pwri_crypt()
359 algtmp->parameter->value.sequence != NULL) in cms_RecipientInfo_pwri_crypt()
[all …]
H A Dcms_enc.c128 } else if (EVP_CIPHER_asn1_to_param(ctx, calg->parameter) <= 0) { in cms_EncryptedContent_init_bio()
181 calg->parameter = ASN1_TYPE_new(); in cms_EncryptedContent_init_bio()
182 if (calg->parameter == NULL) { in cms_EncryptedContent_init_bio()
186 if (EVP_CIPHER_param_to_asn1(ctx, calg->parameter) <= 0) { in cms_EncryptedContent_init_bio()
190 /* If parameter type not set omit parameter */ in cms_EncryptedContent_init_bio()
191 if (calg->parameter->type == V_ASN1_UNDEF) { in cms_EncryptedContent_init_bio()
192 ASN1_TYPE_free(calg->parameter); in cms_EncryptedContent_init_bio()
193 calg->parameter = NULL; in cms_EncryptedContent_init_bio()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dparams.def27 - The enumeral corresponding to this parameter.
29 - The name that can be used to set this parameter using the
32 - A help string explaining how the parameter is used.
34 - A default value for the parameter.
36 Be sure to add an entry to invoke.texi summarizing the parameter. */
49 "max-inline-insns" parameter) is exceeded, the acceptable size
61 parameter.
72 This is done by a linear function, see "max-inline-slope" parameter.
76 function limit (set by the "max-inline-insns-single" parameter) or
88 "max-inline-insns" parameter), a linear function is used to
[all …]
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DDiagnosticASTKinds.td131 "function parameter %0 with unknown value cannot be used in a constant "
512 "%select{class|instance}0 method %1 has a parameter with a different types "
515 "%select{class|instance}0 method %1 has a parameter with a different types "
557 "template parameter lists have a different number of parameters (%0 vs %1)">;
559 "template parameter lists have a different number of parameters (%0 vs %1)">,
562 "template parameter list also declared here">;
564 "template parameter has different kinds in different translation units">;
566 "template parameter has different kinds in different translation units">,
569 "template parameter declared here">;
571 "parameter kind mismatch; parameter is %select{not a|a}0 parameter pack">;
[all …]
H A DDiagnosticCommentKinds.td66 "unrecognized parameter passing direction, "
71 "whitespace is not allowed in parameter passing direction">,
99 "parameter '%0' is already documented">,
106 "parameter '%0' not found in the function declaration">,
120 "template parameter '%0' is already documented">,
127 "template parameter '%0' not found in the template declaration">,
H A DDiagnosticSemaKinds.td43 "absolute value function %0 given an argument of type %1 but has parameter "
158 "non-type template parameter of variably modified type %0">;
292 "%0 cannot be the name of a parameter">;
294 "parameter name cannot have template arguments">;
296 "omitting the parameter name in a function definition is a C2x extension">,
301 "only a pointer parameter optionally followed by an integer parameter|"
302 "a pointer as the first parameter|a %2 type as the second parameter}1">;
320 def warn_unused_parameter : Warning<"unused parameter %0">,
322 def warn_unused_but_set_parameter : Warning<"parameter %0 set but not used">,
337 def warn_unused_exception_param : Warning<"unused exception parameter %0">,
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dbuiltin-attrs.def122 /* Functions whose pointer parameter(s) are all nonnull. */
124 /* Functions whose first parameter is a nonnull pointer. */
126 /* Functions whose second parameter is a nonnull pointer. */
131 /* Nothrow functions whose pointer parameter(s) are all nonnull. */
134 /* Nothrow functions whose first parameter is a nonnull pointer. */
137 /* Nothrow functions whose second parameter is a nonnull pointer. */
140 /* Nothrow functions whose third parameter is a nonnull pointer. */
143 /* Nothrow functions whose fourth parameter is a nonnull pointer. */
146 /* Nothrow functions whose fifth parameter is a nonnull pointer. */
149 /* Nothrow const functions whose pointer parameter(s) are all nonnull. */
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/
H A Dparam-1.m1 /* Test if compiler detects object as an parameter to a method
12 -(void) my_method:(foo) my_param; /* { dg-error "can not use an object as parameter to a method" } …
16 -(void) my_method:(foo) my_param /* { dg-error "can not use an object as parameter to a method" } */
/openbsd-src/sys/dev/pci/drm/amd/pm/powerplay/smumgr/
H A Dsmu9_smumgr.c142 uint16_t msg, uint32_t parameter) in smu9_send_msg_to_smc_with_parameter() argument
151 WREG32_SOC15(MP1, 0, mmMP1_SMN_C2PMSG_102, parameter); in smu9_send_msg_to_smc_with_parameter()
154 WREG32_SOC15(MP1, 0, mmMP1_SMN_C2PMSG_82, parameter); in smu9_send_msg_to_smc_with_parameter()
161 pr_err("Failed message: 0x%x, input parameter: 0x%x, error code: 0x%x\n", msg, parameter, ret); in smu9_send_msg_to_smc_with_parameter()
/openbsd-src/lib/libcrypto/rsa/
H A Drsa_sign.c93 ASN1_TYPE parameter; in encode_pkcs1() local
108 parameter.type = V_ASN1_NULL; in encode_pkcs1()
109 parameter.value.ptr = NULL; in encode_pkcs1()
110 sig.algor->parameter = &parameter; in encode_pkcs1()
/openbsd-src/lib/libc/arch/i386/gen/
H A Dsigsetjmp.S40 movl 4(%esp),%ecx # parameter, pointer to env
41 movl 8(%esp),%eax # parameter, savemask
77 movl 4(%esp),%edx # parameter, pointer to env
94 movl 8(%esp),%eax # parameter, val
H A Dsetjmp.S68 movl 4(%esp),%ecx # parameter, pointer to env
88 movl 4(%esp),%edx # parameter, pointer to env
99 movl 4(%esp),%edx # parameter, pointer to env
100 movl 8(%esp),%eax # parameter, val
H A D_setjmp.S53 movl 4(%esp),%eax # parameter, pointer to env
75 movl 4(%esp),%edx # parameter, pointer to env
76 movl 8(%esp),%eax # parameter, val
/openbsd-src/gnu/usr.bin/perl/t/porting/
H A Dpodcheck.t757 # This adds an extra field to the parent hash, 'parameter'. It is
794 $opts->{parameter} = "" unless $opts->{parameter};
798 # 'parameter'. This is trickier because the matching delimiter to a
816 # And add that variable part to the parameter, while removing it
824 $opts->{parameter} .= " " if $opts->{parameter};
825 $opts->{parameter} .= $special;
836 $opts->{parameter} .= " " if $opts->{parameter};
[all...]
/openbsd-src/usr.bin/file/magdir/
H A Dgrace10 0 string #\ xvgr\ parameter\ file ACE/gr ascii file
11 0 string #\ xmgr\ parameter\ file ACE/gr ascii file
12 0 string #\ ACE/gr\ parameter\ file ACE/gr ascii file
/openbsd-src/lib/libcrypto/pkcs7/
H A Dpk7_attr.c113 if (!(alg->parameter = ASN1_TYPE_new())) in PKCS7_simple_smimecap()
121 alg->parameter->value.integer = nbit; in PKCS7_simple_smimecap()
122 alg->parameter->type = V_ASN1_INTEGER; in PKCS7_simple_smimecap()
/openbsd-src/gnu/llvm/clang/docs/HLSL/
H A DResourceTypes.rst22 Resource types are templated class declarations. The template parameter
23 specifies the expected return type of resource loads, and the expected parameter
27 pointer of the template parameter type. The pointer is populated from a call to
/openbsd-src/lib/libcrypto/rc2/
H A Dversion5 this last parameter, 'bits'. It the key is 128 bits, BSAFE
6 also sets this parameter to 128. The old behaviour can be
7 duplicated by setting this parameter to 1024.
/openbsd-src/gnu/gcc/gcc/config/mt/
H A DABI.txt117 parameter) to right. GR contains the number of the next available
119 parameter word.
122 Set GR=r1 and STARG to point to parameter word 1.
127 of the next parameter:
141 If GR > r4, go to STACK. Otherwise, load the parameter value into
155 Parameters not otherwise handled above are passed in the parameter
160 the alignment requirement of the parameter and copy the argument
191 parameter.

12345678910>>...33