Searched refs:ivec (Results 1 - 25 of 119) sorted by path

12345

/freebsd-11-stable/bin/ed/
H A Dcbc.c72 static DES_cblock ivec; /* initialization vector */ variable
96 MEMZERO(ivec, 8);
329 msgbuf[n] ^= ivec[n];
331 MEMCPY(ivec, msgbuf, 8);
347 msgbuf[n] ^= ivec[n];
372 msgbuf[c] ^= ivec[c];
373 MEMCPY(ivec, tbuf, 8);
/freebsd-11-stable/contrib/amd/amd/
H A Damfs_generic.c87 static am_loc *amfs_lookup_one_location(am_node *new_mp, mntfs *mf, char *ivec,
249 amfs_lookup_one_location(am_node *new_mp, mntfs *mf, char *ivec, argument
268 p = ops_match(fs_opts, ivec, def_opts, new_mp->am_path,
314 plog(XLOG_MAP, "Map entry %s for %s did not match", ivec, new_mp->am_path);
H A Damfs_nfsx.c188 char **ivec; local
209 ivec = strsplit(pref, ',', '\'');
214 for (i = 0; ivec[i]; i++)
230 char *path = ivec[i + 1];
258 XFREE(ivec);
/freebsd-11-stable/contrib/amd/libamu/
H A Dstrutil.c87 char **ivec; local
91 ivec = (char **) xmalloc((ic + 1) * sizeof(char *));
134 * save string in new ivec slot
136 ivec[ic++] = v;
137 ivec = (char **) xrealloc((voidp) ivec, (ic + 1) * sizeof(char *));
145 ivec[ic] = NULL;
147 return ivec;
/freebsd-11-stable/contrib/gdb/gdb/
H A Dc-exp.c264 int *ivec; member in union:YYSTYPE
2400 yyval.ivec[0] = 1; /* Number of types in vector */
2407 { int len = sizeof (struct type *) * (++(yyvsp[-2].ivec[0]) + 1);
2409 yyval.tvec[yyval.ivec[0]] = yyvsp[0].tval;
H A Dc-exp.y147 int *ivec;
992 $<ivec>$[0] = 1; /* Number of types in vector */
996 { int len = sizeof (struct type *) * (++($<ivec>1[0]) + 1);
998 $$[$<ivec>$[0]] = $3;
H A Df-exp.c250 int *ivec; member in union:YYSTYPE
1783 yyval.ivec[0] = 1; /* Number of types in vector */
1790 { int len = sizeof (struct type *) * (++(yyvsp[-2].ivec[0]) + 1);
1792 yyval.tvec[yyval.ivec[0]] = yyvsp[0].tval;
H A Df-exp.y148 int *ivec;
607 $<ivec>$[0] = 1; /* Number of types in vector */
611 { int len = sizeof (struct type *) * (++($<ivec>1[0]) + 1);
613 $$[$<ivec>$[0]] = $3;
H A Djv-exp.c241 int *ivec; member in union:YYSTYPE
H A Djv-exp.y145 int *ivec;
H A Dm2-exp.c275 int *ivec; member in union:YYSTYPE
H A Dm2-exp.y150 int *ivec;
H A Dobjc-exp.c267 int *ivec; member in union:YYSTYPE
2377 yyval.ivec[0] = 1; /* Number of types in vector. */
2384 { int len = sizeof (struct type *) * (++(yyvsp[-2].ivec[0]) + 1);
2386 yyval.tvec[yyval.ivec[0]] = yyvsp[0].tval;
H A Dobjc-exp.y148 int *ivec;
958 $<ivec>$[0] = 1; /* Number of types in vector. */
962 { int len = sizeof (struct type *) * (++($<ivec>1[0]) + 1);
964 $$[$<ivec>$[0]] = $3;
H A Dp-exp.c247 int *ivec; member in union:YYSTYPE
H A Dp-exp.y151 int *ivec;
/freebsd-11-stable/crypto/heimdal/appl/rsh/
H A Dcommon.c74 do_read (int fd, void *buf, size_t sz, void *ivec) argument
91 /* ivec will be non null for protocol version 2 */
92 if(ivec != NULL)
106 edata, outer_len, &data, ivec);
111 if(ivec != NULL) {
131 do_write (int fd, void *buf, size_t sz, void *ivec) argument
142 if(ivec != NULL) {
149 tmp, sz + 4, &data, ivec);
153 buf, sz, &data, ivec);
/freebsd-11-stable/crypto/heimdal/lib/gssapi/krb5/
H A Dget_mic.c154 char ivec[8]; local
244 memset(ivec, 0, 8);
246 memcpy(ivec, p + 8, 8);
251 seq, 8, &encdata, ivec);
H A Dunwrap.c297 DES_cblock ivec; local
299 memcpy(&ivec, p + 8, 8);
304 &ivec);
H A Dverify_mic.c157 char ivec[8]; local
185 memset(ivec, 0, 8);
187 memcpy(ivec, p + 8, 8);
192 p, 8, &seq_data, ivec);
H A Dwrap.c463 DES_cblock ivec; local
465 memcpy (&ivec, p + 8, 8);
470 &ivec);
/freebsd-11-stable/crypto/heimdal/lib/hx509/
H A Dcms.c363 heim_octet_string ivec; local
371 memset(&ivec, 0, sizeof(ivec));
481 ret = hx509_crypto_set_params(context, crypto, params, &ivec);
500 ivec.length ? &ivec : NULL,
514 if (ivec.length)
515 der_free_octet_string(&ivec);
561 heim_octet_string ivec; local
568 memset(&ivec,
[all...]
H A Dcrypto.c2149 const heim_octet_string *ivec, heim_octet_string *param)
2155 if (ivec == NULL)
2159 ivec, &size, ret);
2169 hx509_crypto crypto, heim_octet_string *ivec)
2172 if (ivec == NULL)
2175 ret = decode_CMSCBCParameter(param->data, param->length, ivec, NULL);
2188 const heim_octet_string *ivec, heim_octet_string *param)
2212 rc2params.iv = *ivec;
2224 hx509_crypto crypto, heim_octet_string *ivec)
2262 if (ivec)
2148 CMSCBCParam_get(hx509_context context, const hx509_crypto crypto, const heim_octet_string *ivec, heim_octet_string *param) argument
2168 CMSCBCParam_set(hx509_context context, const heim_octet_string *param, hx509_crypto crypto, heim_octet_string *ivec) argument
2187 CMSRC2CBCParam_get(hx509_context context, const hx509_crypto crypto, const heim_octet_string *ivec, heim_octet_string *param) argument
2223 CMSRC2CBCParam_set(hx509_context context, const heim_octet_string *param, hx509_crypto crypto, heim_octet_string *ivec) argument
2522 hx509_crypto_set_params(hx509_context context, hx509_crypto crypto, const heim_octet_string *param, heim_octet_string *ivec) argument
2531 hx509_crypto_get_params(hx509_context context, hx509_crypto crypto, const heim_octet_string *ivec, heim_octet_string *param) argument
2540 hx509_crypto_random_iv(hx509_crypto crypto, heim_octet_string *ivec) argument
2559 hx509_crypto_encrypt(hx509_crypto crypto, const void *data, const size_t length, const heim_octet_string *ivec, heim_octet_string **ciphertext) argument
2647 hx509_crypto_decrypt(hx509_crypto crypto, const void *data, const size_t length, heim_octet_string *ivec, heim_octet_string *clear) argument
[all...]
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dcrypto-arcfour.c130 void *ivec)
197 void *ivec)
298 void *ivec)
307 return ARCFOUR_subencrypt (context, key, data, len, keyusage, ivec);
309 return ARCFOUR_subdecrypt (context, key, data, len, keyusage, ivec);
125 ARCFOUR_subencrypt(krb5_context context, struct _krb5_key_data *key, void *data, size_t len, unsigned usage, void *ivec) argument
192 ARCFOUR_subdecrypt(krb5_context context, struct _krb5_key_data *key, void *data, size_t len, unsigned usage, void *ivec) argument
292 ARCFOUR_encrypt(krb5_context context, struct _krb5_key_data *key, void *data, size_t len, krb5_boolean encryptp, int usage, void *ivec) argument
H A Dcrypto-des-common.c67 DES_cblock ivec; local
83 memset (&ivec, 0, sizeof(ivec));
84 EVP_CipherInit_ex(&ctx->ectx, NULL, NULL, NULL, (void *)&ivec, -1);
102 DES_cblock ivec; local
111 memset(&ivec, 0, sizeof(ivec));
112 EVP_CipherInit_ex(&ctx->dctx, NULL, NULL, NULL, (void *)&ivec, -1);

Completed in 363 milliseconds

12345