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

/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/common/
H A Degl_g3d_sync.c79 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
82 assert(gctx);
85 gctx->stctxi->flush(gctx->stctxi, 0x0, &gsync->fence);
232 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
234 if (gctx)
235 gctx->stctxi->flush(gctx->stctxi, ST_FLUSH_FRONT, NULL);
H A Degl_g3d_api.c151 struct egl_g3d_context *gctx; local
155 gctx = CALLOC_STRUCT(egl_g3d_context);
156 if (!gctx) {
161 if (!_eglInitContext(&gctx->base, dpy, conf, attribs)) {
162 FREE(gctx);
170 gctx->stapi = egl_g3d_choose_st(drv, &gctx->base, &stattribs.profile);
171 if (!gctx->stapi) {
172 FREE(gctx);
176 gctx
194 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
489 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
559 struct egl_g3d_context *gctx = NULL; local
649 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
661 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
698 struct egl_g3d_context *gctx; local
765 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/common/
H A Degl_g3d_sync.c79 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
82 assert(gctx);
85 gctx->stctxi->flush(gctx->stctxi, 0x0, &gsync->fence);
232 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
234 if (gctx)
235 gctx->stctxi->flush(gctx->stctxi, ST_FLUSH_FRONT, NULL);
H A Degl_g3d_api.c151 struct egl_g3d_context *gctx; local
155 gctx = CALLOC_STRUCT(egl_g3d_context);
156 if (!gctx) {
161 if (!_eglInitContext(&gctx->base, dpy, conf, attribs)) {
162 FREE(gctx);
170 gctx->stapi = egl_g3d_choose_st(drv, &gctx->base, &stattribs.profile);
171 if (!gctx->stapi) {
172 FREE(gctx);
176 gctx
194 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
489 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
559 struct egl_g3d_context *gctx = NULL; local
649 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
661 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
698 struct egl_g3d_context *gctx; local
765 struct egl_g3d_context *gctx = egl_g3d_context(ctx); local
[all...]
/external/openssl/crypto/evp/
H A De_aes.c308 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
313 aesni_set_encrypt_key(key, ctx->key_len * 8, &gctx->ks.ks);
314 CRYPTO_gcm128_init(&gctx->gcm, &gctx->ks,
316 gctx->ctr = (ctr128_f)aesni_ctr32_encrypt_blocks;
320 if (iv == NULL && gctx->iv_set)
321 iv = gctx->iv;
324 CRYPTO_gcm128_setiv(&gctx->gcm, iv, gctx->ivlen);
325 gctx
744 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
767 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
907 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
994 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
1067 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A De_aes.c202 #define AES_GCM_ASM(gctx) \
203 (gctx->ctr == aesni_ctr32_encrypt_blocks && gctx->gcm.ghash == gcm_ghash_avx)
338 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
343 gctx->ctr = aes_gcm_set_key(&gctx->ks.ks, &gctx->gcm, key, ctx->key_len);
345 if (iv == NULL && gctx->iv_set) {
346 iv = gctx->iv;
349 CRYPTO_gcm128_setiv(&gctx
367 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
392 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
511 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
718 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
[all...]
/external/openssl/apps/
H A Dreq.c1607 EVP_PKEY_CTX *gctx = NULL; local
1731 gctx = EVP_PKEY_CTX_new(param, keygen_engine);
1736 gctx = EVP_PKEY_CTX_new_id(*pkey_type, keygen_engine);
1738 if (!gctx)
1745 if (EVP_PKEY_keygen_init(gctx) <= 0)
1754 if (EVP_PKEY_CTX_set_rsa_keygen_bits(gctx, keylen) <= 0)
1758 EVP_PKEY_CTX_free(gctx);
1764 return gctx;

Completed in 1698 milliseconds