Searched refs:gctx (Results 1 - 7 of 7) sorted by relevance

/freebsd-10-stable/crypto/openssl/crypto/evp/
H A De_aes.c297 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
301 aesni_set_encrypt_key(key, ctx->key_len * 8, &gctx->ks);
302 CRYPTO_gcm128_init(&gctx->gcm, &gctx->ks, (block128_f) aesni_encrypt);
303 gctx->ctr = (ctr128_f) aesni_ctr32_encrypt_blocks;
307 if (iv == NULL && gctx->iv_set)
308 iv = gctx->iv;
310 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen);
311 gctx
643 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
668 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
803 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
870 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
934 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
[all...]
/freebsd-10-stable/sys/nfs/
H A Dbootp_subr.c252 static void allocifctx(struct bootpc_globalcontext *gctx);
269 static int bootpc_call(struct bootpc_globalcontext *gctx,
276 struct bootpc_globalcontext *gctx, struct thread *td);
280 struct bootpc_globalcontext *gctx);
282 static int bootpc_received(struct bootpc_globalcontext *gctx,
432 allocifctx(struct bootpc_globalcontext *gctx) argument
437 ifctx->xid = gctx->xid;
443 gctx->xid += 0x100;
444 STAILQ_INSERT_TAIL(&gctx->interfaces, ifctx, next);
478 bootpc_received(struct bootpc_globalcontext *gctx, argument
577 bootpc_call(struct bootpc_globalcontext *gctx, struct thread *td) argument
1011 bootpc_adjust_interface(struct bootpc_ifcontext *ifctx, struct bootpc_globalcontext *gctx, struct thread *td) argument
1410 bootpc_decode_reply(struct nfsv3_diskless *nd, struct bootpc_ifcontext *ifctx, struct bootpc_globalcontext *gctx) argument
1579 struct bootpc_globalcontext *gctx; /* Global BOOTP context */ local
[all...]
/freebsd-10-stable/sys/dev/drm2/radeon/
H A Datom.c178 struct atom_context *gctx = ctx->ctx; local
187 idx += gctx->reg_block;
188 switch (gctx->io_mode) {
190 val = gctx->card->reg_read(gctx->card, idx);
201 if (!(gctx->io_mode & 0x80)) {
205 if (!gctx->iio[gctx->io_mode & 0x7F]) {
208 gctx->io_mode & 0x7F);
212 atom_iio_execute(gctx,
451 struct atom_context *gctx = ctx->ctx; local
[all...]
/freebsd-10-stable/sys/amd64/vmm/amd/
H A Dsvm.h54 void svm_launch(uint64_t pa, struct svm_regctx *gctx, struct pcpu *pcpu);
H A Dsvm.c1872 struct svm_regctx *gctx; local
1892 gctx = svm_get_guest_regctx(svm_sc, vcpu);
1977 svm_launch(vmcb_pa, gctx, &__pcpu[curcpu]);
/freebsd-10-stable/crypto/heimdal/kadmin/
H A Drpc.c739 struct gctx { struct
756 struct gctx gctx; local
759 memset(&gctx, 0, sizeof(gctx));
862 if (gctx.done) {
871 maj_stat = gss_verify_mic(&min_stat, gctx.ctx, &gin, &gout, NULL);
884 INSIST(gctx.done);
886 INSIST(krb5_data_cmp(&gcred.handle, &gctx.handle) == 0);
893 maj_stat = gss_unwrap(&min_stat, gctx
[all...]
/freebsd-10-stable/crypto/openssl/apps/
H A Dreq.c1520 EVP_PKEY_CTX *gctx = NULL; local
1623 gctx = EVP_PKEY_CTX_new(param, keygen_engine);
1627 gctx = EVP_PKEY_CTX_new_id(*pkey_type, keygen_engine);
1629 if (!gctx) {
1635 if (EVP_PKEY_keygen_init(gctx) <= 0) {
1642 if (EVP_PKEY_CTX_set_rsa_keygen_bits(gctx, keylen) <= 0) {
1645 EVP_PKEY_CTX_free(gctx);
1651 return gctx;

Completed in 190 milliseconds