Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/modes/
H A Docb128.c94 size_t l_index = ctx->l_index; in ocb_lookup_l() local
96 if (idx <= l_index) { in ocb_lookup_l()
118 while (l_index < idx) { in ocb_lookup_l()
119 ocb_double(ctx->l + l_index, ctx->l + l_index + 1); in ocb_lookup_l()
120 l_index++; in ocb_lookup_l()
122 ctx->l_index = l_index; in ocb_lookup_l()
156 ctx->l_index = 0; in CRYPTO_ocb128_init()
188 ctx->l_index = 4; /* enough to process up to 496 bytes */ in CRYPTO_ocb128_init()
209 memcpy(dest->l, src->l, (src->l_index + 1) * 16); in CRYPTO_ocb128_copy_ctx()
/freebsd/crypto/heimdal/lib/wind/
H A Dnormalize.c101 unsigned l_index = in[0] - l_base; in hangul_composition() local
107 return (l_index * v_count + v_index) * t_count + s_base; in hangul_composition()
/freebsd/crypto/openssl/include/crypto/
H A Dmodes.h185 size_t l_index; member