Home
last modified time | relevance | path

Searched refs:octx (Results 1 – 3 of 3) sorted by relevance

/external/openssh/
Dhmac.c30 struct ssh_digest_ctx *octx; member
51 (ret->octx = ssh_digest_start(alg)) == NULL || in ssh_hmac_start()
82 if (ssh_digest_update(ctx->octx, ctx->buf, ctx->buf_len) < 0) in ssh_hmac_init()
114 if (ssh_digest_copy_state(ctx->octx, ctx->digest) < 0 || in ssh_hmac_final()
126 ssh_digest_free(ctx->octx); in ssh_hmac_free()
Dumac.c1215 struct umac_ctx *ctx, *octx; in umac_new() local
1219 octx = ctx = xcalloc(1, sizeof(*ctx) + ALLOC_BOUNDARY); in umac_new()
1226 ctx->free_ptr = octx; in umac_new()
/external/python/cpython3/Python/
Dcontext.c83 PyContext_Copy(PyObject * octx) in PyContext_Copy() argument
85 ENSURE_Context(octx, NULL) in PyContext_Copy()
86 PyContext *ctx = (PyContext *)octx; in PyContext_Copy()
104 PyContext_Enter(PyObject *octx) in PyContext_Enter() argument
106 ENSURE_Context(octx, -1) in PyContext_Enter()
107 PyContext *ctx = (PyContext *)octx; in PyContext_Enter()
130 PyContext_Exit(PyObject *octx) in PyContext_Exit() argument
132 ENSURE_Context(octx, -1) in PyContext_Exit()
133 PyContext *ctx = (PyContext *)octx; in PyContext_Exit()