Lines Matching refs:bytes
27 u32 bytes; member
64 if (dctx->bytes) { in ghash_update()
65 u8 *pos = buf + (GHASH_BLOCK_SIZE - dctx->bytes); in ghash_update()
67 n = min(srclen, dctx->bytes); in ghash_update()
68 dctx->bytes -= n; in ghash_update()
74 if (!dctx->bytes) { in ghash_update()
92 dctx->bytes = GHASH_BLOCK_SIZE - srclen; in ghash_update()
104 if (dctx->bytes) { in ghash_flush()
105 u8 *pos = buf + (GHASH_BLOCK_SIZE - dctx->bytes); in ghash_flush()
107 memset(pos, 0, dctx->bytes); in ghash_flush()
113 dctx->bytes = 0; in ghash_flush()