Lines Matching refs:ictx
50 const struct sha3_state *ictx = in; in sha3_512_import() local
52 if (unlikely(ictx->rsizw)) in sha3_512_import()
54 sctx->count = ictx->rsiz; in sha3_512_import()
56 memcpy(sctx->state, ictx->st, sizeof(ictx->st)); in sha3_512_import()
57 memcpy(sctx->buf, ictx->buf, sizeof(ictx->buf)); in sha3_512_import()
58 sctx->first_message_part = ictx->partial; in sha3_512_import()
67 const struct sha3_state *ictx = in; in sha3_384_import() local
69 if (unlikely(ictx->rsizw)) in sha3_384_import()
71 sctx->count = ictx->rsiz; in sha3_384_import()
73 memcpy(sctx->state, ictx->st, sizeof(ictx->st)); in sha3_384_import()
74 memcpy(sctx->buf, ictx->buf, sizeof(ictx->buf)); in sha3_384_import()
75 sctx->first_message_part = ictx->partial; in sha3_384_import()