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

/external/boringssl/src/crypto/cipher/
H A De_aes.c267 #define AES_GCM_ASM(gctx) \
268 (gctx->ctr == aesni_ctr32_encrypt_blocks && gctx->gcm.ghash == gcm_ghash_avx)
471 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
476 gctx->ctr =
477 aes_ctr_set_key(&gctx->ks.ks, &gctx->gcm, NULL, key, ctx->key_len);
479 if (iv == NULL && gctx->iv_set) {
480 iv = gctx->iv;
483 CRYPTO_gcm128_setiv(&gctx
501 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
525 EVP_AES_GCM_CTX *gctx = c->cipher_data; local
637 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
884 EVP_AES_GCM_CTX *gctx = ctx->cipher_data; local
[all...]
/external/jemalloc/src/
H A Dprof.c59 * Table of mutexes that are shared among gctx's. These are leaf locks, so
60 * there is no problem with using them for more than one gctx at the same time.
61 * The primary motivation for this sharing though is that gctx's are ephemeral,
71 * than one tdata at the same time, even though a gctx lock may be acquired
555 prof_gctx_t *gctx = (prof_gctx_t *)iallocztm(tsd, size, local
557 if (gctx == NULL)
559 gctx->lock = prof_gctx_mutex_choose();
564 gctx->nlimbo = 1;
565 tctx_tree_new(&gctx->tctxs);
567 memcpy(gctx
574 prof_gctx_try_destroy(tsd_t *tsd, prof_tdata_t *tdata_self, prof_gctx_t *gctx, prof_tdata_t *tdata) argument
624 prof_gctx_should_destroy(prof_gctx_t *gctx) argument
641 prof_gctx_t *gctx = tctx->gctx; local
714 } gctx; local
780 prof_gctx_t *gctx; local
1069 prof_tctx_merge_gctx(prof_tctx_t *tctx, prof_gctx_t *gctx) argument
1152 prof_dump_gctx_prep(prof_gctx_t *gctx, prof_gctx_tree_t *gctxs) argument
1173 prof_gctx_merge_iter(prof_gctx_tree_t *gctxs, prof_gctx_t *gctx, void *arg) argument
1190 prof_gctx_t *gctx; local
1311 prof_dump_gctx(bool propagate_err, prof_gctx_t *gctx, const prof_bt_t *bt, prof_gctx_tree_t *gctxs) argument
1463 prof_gctx_dump_iter(prof_gctx_tree_t *gctxs, prof_gctx_t *gctx, void *arg) argument
1490 } gctx; local
[all...]
/external/mesa3d/src/gallium/state_trackers/egl/common/
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...]
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);
/external/jemalloc/include/jemalloc/internal/
H A Dprof.h36 * Number of mutexes shared among all gctx's. No space is allocated for these
103 prof_gctx_t *gctx; member in struct:prof_tctx_s
107 * but coexisting in gctx->tctxs. There are two ways that such
120 /* Linkage into gctx's tctxs. */
129 /* Current dump-related state, protected by gctx->lock. */
145 * Number of threads that currently cause this gctx to be in a state of
147 * - Initializing this gctx.
148 * - Initializing per thread counters associated with this gctx.
149 * - Preparing to destroy this gctx.
150 * - Dumping a heap profile that includes this gctx
[all...]

Completed in 147 milliseconds