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

/freebsd-10.1-release/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.1-release/sys/nfs/
H A Dbootp_subr.c249 static void allocifctx(struct bootpc_globalcontext *gctx);
266 static int bootpc_call(struct bootpc_globalcontext *gctx,
273 struct bootpc_globalcontext *gctx, struct thread *td);
277 struct bootpc_globalcontext *gctx);
279 static int bootpc_received(struct bootpc_globalcontext *gctx,
429 allocifctx(struct bootpc_globalcontext *gctx) argument
434 ifctx->xid = gctx->xid;
440 gctx->xid += 0x100;
441 STAILQ_INSERT_TAIL(&gctx->interfaces, ifctx, next);
475 bootpc_received(struct bootpc_globalcontext *gctx, argument
574 bootpc_call(struct bootpc_globalcontext *gctx, struct thread *td) argument
1008 bootpc_adjust_interface(struct bootpc_ifcontext *ifctx, struct bootpc_globalcontext *gctx, struct thread *td) argument
1375 bootpc_decode_reply(struct nfsv3_diskless *nd, struct bootpc_ifcontext *ifctx, struct bootpc_globalcontext *gctx) argument
1542 struct bootpc_globalcontext *gctx; /* Global BOOTP context */ local
[all...]
/freebsd-10.1-release/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.1-release/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.1-release/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 80 milliseconds