Searched refs:ctx2 (Results 1 - 4 of 4) sorted by relevance

/osnet-11/usr/src/grub/grub2/grub-core/lib/
H A Dcrypto.c338 grub_uint8_t *ctx2; local
340 ctx2 = grub_malloc (hnd->md->contextsize);
341 if (!ctx2)
348 hnd->md->init (ctx2);
349 hnd->md->write (ctx2, hnd->opad, hnd->md->blocksize);
350 hnd->md->write (ctx2, p, hnd->md->mdlen);
351 hnd->md->final (ctx2);
357 grub_memcpy (out, hnd->md->read (ctx2), hnd->md->mdlen);
358 grub_memset (ctx2, 0, hnd->md->contextsize);
359 grub_free (ctx2);
[all...]
/osnet-11/usr/src/lib/libc/amd64/unwind/
H A Dunwind.c160 copy_ctx(struct _Unwind_Context *ctx1, struct _Unwind_Context *ctx2) argument
162 if (ctx1 != ctx2) {
163 (void) memcpy(ctx2, ctx1, sizeof (*ctx2));
/osnet-11/usr/src/cmd/ntfsprogs/
H A Dntfscmp.c667 ntfs_attr_search_ctx *ctx2)
670 ATTR_RECORD *a2 = ctx2->attr;
679 na2 = ntfs_attr_open(base_inode(ctx2), a2->type, GET_ATTR_NAME(a2));
826 ntfs_attr_search_ctx *ctx1, *ctx2; local
830 if (!(ctx2 = attr_get_search_ctx(ni2)))
834 set_cmp_attr(ctx2, &atype2, &name2);
845 ret2 = next_attr(ctx2, &atype2, &name2, &errno2);
867 if (new_attribute(ctx2, prev_atype, prev_name)) {
868 print_ctx(ctx2);
875 cmp_attribute(ctx1, ctx2);
666 cmp_attribute(ntfs_attr_search_ctx *ctx1, ntfs_attr_search_ctx *ctx2) argument
[all...]
/osnet-11/usr/src/lib/krb5/plugins/preauth/pkinit/
H A Dpkinit_crypto_openssl.c993 EVP_MD_CTX ctx, ctx2; local
1154 EVP_MD_CTX_init(&ctx2);
1157 EVP_DigestInit_ex(&ctx2, md_tmp, NULL);
1159 EVP_DigestInit_ex(&ctx2, EVP_sha1(), NULL);
1160 EVP_DigestUpdate(&ctx2, abuf, alen);
1161 EVP_DigestFinal_ex(&ctx2, md_data2, &md_len2);
1299 EVP_MD_CTX_cleanup(&ctx2);

Completed in 58 milliseconds