Home
last modified time | relevance | path

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

12345678910

/dflybsd-src/contrib/gcc-8.0/libgomp/
H A Domp_lib.h.in27 parameter (omp_lock_kind = @OMP_LOCK_KIND@)
28 parameter (omp_nest_lock_kind = @OMP_NEST_LOCK_KIND@)
30 parameter (omp_sched_kind = 4)
33 parameter (omp_sched_static = 1)
34 parameter (omp_sched_dynamic = 2)
35 parameter (omp_sched_guided = 3)
36 parameter (omp_sched_auto = 4)
38 parameter (omp_proc_bind_kind = 4)
44 parameter (omp_proc_bind_false = 0)
45 parameter (omp_proc_bind_true = 1)
[all …]
/dflybsd-src/crypto/libressl/crypto/asn1/
H A Dx_algor.c72 .offset = offsetof(X509_ALGOR, parameter),
156 if (alg->parameter == NULL) in X509_ALGOR_set0()
157 alg->parameter = ASN1_TYPE_new(); in X509_ALGOR_set0()
158 if (alg->parameter == NULL) in X509_ALGOR_set0()
169 if (alg->parameter) { in X509_ALGOR_set0()
170 ASN1_TYPE_free(alg->parameter); in X509_ALGOR_set0()
171 alg->parameter = NULL; in X509_ALGOR_set0()
174 ASN1_TYPE_set(alg->parameter, ptype, pval); in X509_ALGOR_set0()
185 if (algor->parameter == NULL) { in X509_ALGOR_get0()
189 *pptype = algor->parameter->type; in X509_ALGOR_get0()
[all …]
H A Dp5_pbev2.c210 if (!(scheme->parameter = ASN1_TYPE_new())) in PKCS5_pbe2_set_iv()
226 if (EVP_CIPHER_param_to_asn1(&ctx, scheme->parameter) < 0) { in PKCS5_pbe2_set_iv()
261 if (!(ret->parameter = ASN1_TYPE_new())) in PKCS5_pbe2_set_iv()
269 &ret->parameter->value.sequence)) goto merr; in PKCS5_pbe2_set_iv()
270 ret->parameter->type = V_ASN1_SEQUENCE; in PKCS5_pbe2_set_iv()
358 if (!(keyfunc->parameter = ASN1_TYPE_new())) in PKCS5_pbkdf2_set()
362 &keyfunc->parameter->value.sequence)) in PKCS5_pbkdf2_set()
364 keyfunc->parameter->type = V_ASN1_SEQUENCE; in PKCS5_pbkdf2_set()
/dflybsd-src/sys/dev/raid/vinum/
H A Dvinumconfig.c956 int parameter; in config_drive() local
977 for (parameter = 2; parameter < tokens; parameter++) { /* look at the other tokens */ in config_drive()
978 switch (get_keyword(token[parameter], &keyword_set)) { in config_drive()
980 parameter++; in config_drive()
981 otherdriveno = find_drive_by_dev(token[parameter], 0); /* see if it exists already */ in config_drive()
990 if (strcmp(drive->devicename, token[parameter])) /* different name */ in config_drive()
1000 "%s", token[parameter]); in config_drive()
1047 "%s", token[parameter]); in config_drive()
1051 parameter++; /* skip the keyword */ in config_drive()
1053 drive->state = DriveState(token[parameter]); /* set the state */ in config_drive()
[all …]
H A D.gdbinit.kernel57 Show the register contents and the first four parameter
116 Show the register contents and the first ten parameter
145 Show the first parameter of current stack frame in various formats
148 Show the second parameter of current stack frame in various formats
151 Show the third parameter of current stack frame in various formats
154 Show the fourth parameter of current stack frame in various formats
157 Show the fifth parameter of current stack frame in various formats
340 at by the parameter.
344 at by the parameter.
484 Show a backtrace for the process whose pid is specified as a parameter.
/dflybsd-src/crypto/libressl/crypto/cms/
H A Dcms_pwri.c146 encalg->parameter = ASN1_TYPE_new(); in CMS_add0_recipient_password()
147 if (!encalg->parameter) { in CMS_add0_recipient_password()
151 if (EVP_CIPHER_param_to_asn1(ctx, encalg->parameter) <= 0) { in CMS_add0_recipient_password()
179 pwri->keyEncryptionAlgorithm->parameter = ASN1_TYPE_new(); in CMS_add0_recipient_password()
180 if (pwri->keyEncryptionAlgorithm->parameter == NULL) in CMS_add0_recipient_password()
184 &pwri->keyEncryptionAlgorithm->parameter->value.sequence)) in CMS_add0_recipient_password()
186 pwri->keyEncryptionAlgorithm->parameter->type = V_ASN1_SEQUENCE; in CMS_add0_recipient_password()
352 if (algtmp->parameter != NULL && in cms_RecipientInfo_pwri_crypt()
353 algtmp->parameter->type == V_ASN1_SEQUENCE && in cms_RecipientInfo_pwri_crypt()
354 algtmp->parameter->value.sequence != NULL) in cms_RecipientInfo_pwri_crypt()
[all …]
H A Dcms_enc.c125 } else if (EVP_CIPHER_asn1_to_param(ctx, calg->parameter) <= 0) { in cms_EncryptedContent_init_bio()
178 calg->parameter = ASN1_TYPE_new(); in cms_EncryptedContent_init_bio()
179 if (calg->parameter == NULL) { in cms_EncryptedContent_init_bio()
183 if (EVP_CIPHER_param_to_asn1(ctx, calg->parameter) <= 0) { in cms_EncryptedContent_init_bio()
188 if (calg->parameter->type == V_ASN1_UNDEF) { in cms_EncryptedContent_init_bio()
189 ASN1_TYPE_free(calg->parameter); in cms_EncryptedContent_init_bio()
190 calg->parameter = NULL; in cms_EncryptedContent_init_bio()
/dflybsd-src/contrib/gcc-4.7/libgomp/
H A Domp_lib.h.in26 parameter (omp_lock_kind = @OMP_LOCK_KIND@)
27 parameter (omp_nest_lock_kind = @OMP_NEST_LOCK_KIND@)
29 parameter (omp_sched_kind = 4)
32 parameter (omp_sched_static = 1)
33 parameter (omp_sched_dynamic = 2)
34 parameter (omp_sched_guided = 3)
35 parameter (omp_sched_auto = 4)
36 parameter (openmp_version = 201107)
H A Domp_lib.f90.in27 integer, parameter :: omp_lock_kind = @OMP_LOCK_KIND@
28 integer, parameter :: omp_nest_lock_kind = @OMP_NEST_LOCK_KIND@
29 integer, parameter :: omp_sched_kind = 4
35 integer, parameter :: openmp_version = 201107
36 integer (omp_sched_kind), parameter :: omp_sched_static = 1
37 integer (omp_sched_kind), parameter :: omp_sched_dynamic = 2
38 integer (omp_sched_kind), parameter :: omp_sched_guided = 3
39 integer (omp_sched_kind), parameter :: omp_sched_auto = 4
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Dbuiltin-attrs.def138 /* Functions whose pointer parameter(s) are all nonnull. */
140 /* Functions whose first parameter is a nonnull pointer. */
142 /* Functions whose second parameter is a nonnull pointer. */
144 /* Functions whose third parameter is a nonnull pointer. */
149 /* Nothrow functions whose pointer parameter(s) are all nonnull. */
152 /* Nothrow leaf functions whose pointer parameter(s) are all nonnull. */
155 /* Nothrow functions whose first parameter is a nonnull pointer. */
158 /* Nothrow functions whose second parameter is a nonnull pointer. */
161 /* Nothrow functions whose third parameter is a nonnull pointer. */
164 /* Nothrow functions whose fourth parameter is a nonnull pointer. */
[all …]
/dflybsd-src/usr.bin/dfregress/
H A Dtestcase.c631 char *parameter, *endptr; in parse_testcase_option() local
635 parameter = strchr(option, '='); in parse_testcase_option()
636 noparam = (parameter == NULL); in parse_testcase_option()
639 *parameter = '\0'; in parse_testcase_option()
640 ++parameter; in parse_testcase_option()
648 lval = strtol(parameter, &endptr, 10); in parse_testcase_option()
651 "parameter, not '%s'", parameter); in parse_testcase_option()
660 lval = strtol(parameter, &endptr, 10); in parse_testcase_option()
663 "parameter, not '%s'", parameter); in parse_testcase_option()
677 opts->pre_cmd = strdup(parameter); in parse_testcase_option()
[all …]
/dflybsd-src/sbin/cryptdisks/
H A Dcryptdisks.c190 char *parameter, *endptr; in parse_crypt_options() local
197 parameter = strchr(option, '='); in parse_crypt_options()
198 noparam = (parameter == NULL); in parse_crypt_options()
201 *parameter = '\0'; in parse_crypt_options()
202 ++parameter; in parse_crypt_options()
210 lval = strtol(parameter, &endptr, 10); in parse_crypt_options()
213 "parameter, not '%s'", parameter); in parse_crypt_options()
222 ullval = strtoull(parameter, &endptr, 10); in parse_crypt_options()
225 "parameter, not '%s'", parameter); in parse_crypt_options()
242 fd = popen(parameter, "r"); in parse_crypt_options()
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Dgenrecog.c1010 struct parameter struct
1033 parameter ();
1034 parameter (type_enum, bool, uint64_t);
1047 parameter::parameter () in parameter() argument
1050 parameter::parameter (type_enum type_in, bool is_param_in, uint64_t value_in) in parameter() function
1054 operator == (const parameter &param1, const parameter &param2)
1062 operator != (const parameter &param1, const parameter &param2)
1091 auto_vec <parameter::type_enum, MAX_PATTERN_PARAMS> param_types;
1105 auto_vec <parameter, MAX_PATTERN_PARAMS> params;
2038 parameter::type_enum
[all …]
H A Dbuiltin-attrs.def190 /* Functions whose pointer parameter(s) are all nonnull. */
192 /* Functions whose first parameter is a nonnull pointer. */
194 /* Functions whose second parameter is a nonnull pointer. */
196 /* Functions whose third parameter is a nonnull pointer. */
201 /* Nothrow functions whose pointer parameter(s) are all nonnull. */
204 /* Nothrow leaf functions whose pointer parameter(s) are all nonnull. */
208 /* Nothrow functions whose first parameter is a nonnull pointer. */
211 /* Nothrow functions whose second parameter is a nonnull pointer. */
214 /* Nothrow functions whose third parameter is a nonnull pointer. */
217 /* Nothrow functions whose fourth parameter is a nonnull pointer. */
[all …]
/dflybsd-src/sys/dev/drm/amd/powerplay/smumgr/
H A Dsmu9_smumgr.c127 uint16_t msg, uint32_t parameter);
129 uint16_t msg, uint32_t parameter) in smu9_send_msg_to_smc_with_parameter() argument
138 WREG32_SOC15(MP1, 0, mmMP1_SMN_C2PMSG_82, parameter); in smu9_send_msg_to_smc_with_parameter()
144 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()
H A Dsmu7_smumgr.h65 uint32_t parameter);
67 uint16_t msg, uint32_t parameter);
/dflybsd-src/crypto/libressl/crypto/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()
/dflybsd-src/contrib/file/magic/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
/dflybsd-src/crypto/libressl/crypto/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()
/dflybsd-src/crypto/openssh/
H A Dconfig.log677 cc: error: unrecognized command line option '-Qunused-arguments'; did you mean '-Wunused-parameter'?
818 configure:7982: checking if cc supports compile flag -Wunused-parameter
819 …at-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Werror -Wunused-parameter conftest.c >&5
821 …-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Werror -Wunused-parameter conftest.c >&5
827 …ormat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-parameter -Werror -Wunused…
829 …ormat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-parameter -Werror -Wunused…
835 …ormat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-parameter -Wno-unused-resu…
837 …ormat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-parameter -Wno-unused-resu…
843 …ormat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-parameter -Wno-unused-resu…
845 …ormat-security -Wsizeof-pointer-memaccess -Wno-pointer-sign -Wno-unused-parameter -Wno-unused-resu…
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/cp/
H A Dcp-tree.def128 /* Index into a template parameter list. The TEMPLATE_PARM_IDX gives
129 the index (from 0) of the parameter, while the TEMPLATE_PARM_LEVEL
130 gives the level (from 1) of the parameter.
146 declaration of this parameter, either a TYPE_DECL or CONST_DECL.
148 parent, i.e., the LEVEL that the parameter originally had when it
158 The LEVEL is the level of the parameter when we are worrying about
163 /* Index into a template parameter list for template template parameters.
164 This parameter must be a type. The TYPE_FIELDS value will be a
177 /* Index into a template parameter list. This parameter must be a type.
199 TYPE_CONTEXT is `T', the template parameter dependent object.
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/cp/
H A Dcp-tree.def126 /* Index into a template parameter list. The TEMPLATE_PARM_IDX gives
127 the index (from 0) of the parameter, while the TEMPLATE_PARM_LEVEL
128 gives the level (from 1) of the parameter.
144 declaration of this parameter, either a TYPE_DECL or CONST_DECL.
146 parent, i.e., the LEVEL that the parameter originally had when it
156 The LEVEL is the level of the parameter when we are worrying about
161 /* Index into a template parameter list for template template parameters.
162 This parameter must be a type. The TYPE_FIELDS value will be a
174 /* Index into a template parameter list. This parameter must be a type.
196 TYPE_CONTEXT is `T', the template parameter dependent object.
[all …]
/dflybsd-src/crypto/libressl/crypto/ec/
H A Dec_ameth.c793 if (alg->parameter->type != V_ASN1_SEQUENCE) in ecdh_cms_set_shared_info()
796 p = alg->parameter->value.sequence->data; in ecdh_cms_set_shared_info()
797 plen = alg->parameter->value.sequence->length; in ecdh_cms_set_shared_info()
809 if (EVP_CIPHER_asn1_to_param(kekctx, kekalg->parameter) <= 0) in ecdh_cms_set_shared_info()
965 wrap_alg->parameter = ASN1_TYPE_new(); in ecdh_cms_encrypt()
966 if (wrap_alg->parameter == NULL) in ecdh_cms_encrypt()
968 if (EVP_CIPHER_param_to_asn1(ctx, wrap_alg->parameter) <= 0) in ecdh_cms_encrypt()
970 if (ASN1_TYPE_get(wrap_alg->parameter) == NID_undef) { in ecdh_cms_encrypt()
971 ASN1_TYPE_free(wrap_alg->parameter); in ecdh_cms_encrypt()
972 wrap_alg->parameter = NULL; in ecdh_cms_encrypt()
/dflybsd-src/share/mk/
H A Dbsd.sys.mk51 -Wshadow -Wcast-align -Wunused-parameter
72 _cnowarnflags += -Wno-unused-parameter
89 _cnowarnflags += -Wno-unused-but-set-parameter
/dflybsd-src/contrib/gcc-8.0/libstdc++-v3/include/ext/
H A Drandom491 * @brief Returns the parameter set of the distribution.
498 * @brief Sets the parameter set of the distribution.
499 * @param __param The new parameter set of the distribution.
795 * @brief Returns the parameter set of the distribution.
802 * @brief Sets the parameter set of the distribution.
803 * @param __param The new parameter set of the distribution.
1036 * @brief Returns the parameter set of the distribution.
1043 * @brief Sets the parameter set of the distribution.
1044 * @param __param The new parameter set of the distribution.
1277 * @brief Returns the parameter set of the distribution.
[all …]

12345678910