Searched refs:vctx (Results 1 - 12 of 12) sorted by relevance

/freebsd-12-stable/sys/crypto/blake2/
H A Dblake2-sw.c37 blake2b_xform_init(void *vctx) argument
39 struct blake2b_xform_ctx *ctx = vctx;
52 blake2b_xform_setkey(void *vctx, const uint8_t *key, uint16_t klen) argument
54 struct blake2b_xform_ctx *ctx = vctx;
63 blake2b_xform_update(void *vctx, const uint8_t *data, uint16_t len) argument
65 struct blake2b_xform_ctx *ctx = vctx;
75 blake2b_xform_final(uint8_t *out, void *vctx) argument
77 struct blake2b_xform_ctx *ctx = vctx;
105 blake2s_xform_init(void *vctx) argument
107 struct blake2s_xform_ctx *ctx = vctx;
120 blake2s_xform_setkey(void *vctx, const uint8_t *key, uint16_t klen) argument
131 blake2s_xform_update(void *vctx, const uint8_t *data, uint16_t len) argument
143 blake2s_xform_final(uint8_t *out, void *vctx) argument
[all...]
/freebsd-12-stable/stand/i386/loader/
H A Dchain.c47 #define VECTX_HANDLE(x) vctx
69 struct vectx *vctx; local
89 vctx = vectx_open(fd, argv[1], 0L, NULL, &verror, __func__);
93 free(vctx);
133 verror = vectx_close(vctx, VE_MUST, __func__);
135 free(vctx);
/freebsd-12-stable/contrib/ofed/libibverbs/
H A Dverbs.h1576 struct verbs_context *vctx = _vctx; \
1577 if (vctx && (vctx->sz >= sizeof(*vctx) - offsetof(struct verbs_context, op))) \
1578 vctx->op = ptr; })
1693 struct verbs_context *vctx = verbs_get_ctx_op(qp->context, local
1695 if (!vctx || !vctx->ibv_create_flow) {
1700 return vctx->ibv_create_flow(qp, flow);
1705 struct verbs_context *vctx local
1718 struct verbs_context *vctx = verbs_get_ctx_op(context, open_xrcd); local
1731 struct verbs_context *vctx = verbs_get_ctx(xrcd->context); local
1848 struct verbs_context *vctx = verbs_get_ctx_op(context, create_cq_ex); local
1954 struct verbs_context *vctx; local
1998 struct verbs_context *vctx = verbs_get_ctx_op(srq->context, get_srq_num); local
2035 struct verbs_context *vctx; local
2059 struct verbs_context *vctx; local
2079 struct verbs_context *vctx; local
2105 struct verbs_context *vctx = verbs_get_ctx_op(context, open_qp); local
2160 struct verbs_context *vctx = verbs_get_ctx_op(context, create_wq); local
2193 struct verbs_context *vctx = verbs_get_ctx_op(wq->context, modify_wq); local
2210 struct verbs_context *vctx; local
2230 struct verbs_context *vctx; local
2250 struct verbs_context *vctx; local
[all...]
H A Ddevice.c159 struct verbs_context *vctx = verbs_get_ctx(context); local
167 cq = vctx->priv->create_cq_ex(context, cq_attr);
/freebsd-12-stable/sys/crypto/chacha20/
H A Dchacha-sw.c56 chacha20_xform_crypt_multi(void *vctx, uint8_t *bytes, size_t len) argument
60 ctx = vctx;
/freebsd-12-stable/contrib/wpa/src/utils/
H A Dxml_libxml2.c59 xmlSchemaValidCtxtPtr vctx; local
86 vctx = xmlSchemaNewValidCtxt(schema);
87 xmlSchemaSetValidErrors(vctx, (xmlSchemaValidityErrorFunc) add_str,
91 ret = xmlSchemaValidateDoc(vctx, doc);
92 xmlSchemaFreeValidCtxt(vctx);
120 xmlValidCtxt vctx; local
146 os_memset(&vctx, 0, sizeof(vctx));
147 vctx.userData = &errors;
148 vctx
[all...]
/freebsd-12-stable/crypto/openssl/crypto/evp/
H A Dm_sigver.c179 int vctx = 0; local
182 vctx = 1;
184 vctx = 0;
186 if (vctx)
198 if (vctx)
205 if (vctx || !r)
/freebsd-12-stable/stand/common/
H A Dload_elf_obj.c64 struct vectx *vctx; member in struct:elf_file
69 #define VECTX_HANDLE(ef) (ef)->vctx
116 ef.vctx = vectx_open(ef.fd, filename, 0L, NULL, &verror, __func__);
120 free(ef.vctx);
207 if (!err && ef.vctx) {
210 verror = vectx_close(ef.vctx, VE_MUST, __func__);
H A Dmodule.c621 #define VECTX_HANDLE(fd) vctx
639 struct vectx *vctx; local
665 vctx = vectx_open(fd, name, 0L, NULL, &verror, __func__);
670 free(vctx);
703 free(vctx);
712 verror = vectx_close(vctx, VE_MUST, __func__);
716 free(vctx);
H A Dload_elf.c75 struct vectx *vctx; member in struct:elf_file
80 #define VECTX_HANDLE(ef) (ef)->vctx
230 ef->vctx = vectx_open(ef->fd, filename, 0L, NULL, &verror, __func__);
234 free(ef->vctx);
285 free(ef->vctx);
445 if (!err && ef.vctx) {
448 verror = vectx_close(ef.vctx, VE_MUST, __func__);
1057 if (!err && ef.vctx) {
1060 verror = vectx_close(ef.vctx, VE_MUST, __func__);
/freebsd-12-stable/crypto/heimdal/lib/hx509/
H A Dhxtool.c677 hx509_validate_ctx vctx; local
679 hx509_validate_ctx_init(hxcontext, &vctx);
680 hx509_validate_ctx_set_print(vctx, hx509_print_stdout, stdout);
681 hx509_validate_ctx_add_flags(vctx, HX509_VALIDATE_F_VALIDATE);
682 hx509_validate_ctx_add_flags(vctx, HX509_VALIDATE_F_VERBOSE);
684 hx509_validate_cert(hxcontext, vctx, cert);
686 hx509_validate_ctx_free(vctx);
2029 hx509_verify_ctx vctx = ctx; local
2042 ret = hx509_cms_verify_signed(context, vctx, 0, sd.data, sd.length,
2058 hx509_verify_ctx vctx; local
[all...]
/freebsd-12-stable/sys/crypto/aesni/
H A Daesni.c533 intel_sha1_update(void *vctx, const void *vdata, u_int datalen) argument
535 struct sha1_ctxt *ctx = vctx;
581 intel_sha256_update(void *vctx, const void *vdata, u_int len) argument
583 SHA256_CTX *ctx = vctx;

Completed in 214 milliseconds