Lines Matching refs:bytes
32 u32 bytes; member
73 if (dctx->bytes) { in ghash_update()
74 int n = min(srclen, dctx->bytes); in ghash_update()
75 u8 *pos = dst + (GHASH_BLOCK_SIZE - dctx->bytes); in ghash_update()
77 dctx->bytes -= n; in ghash_update()
83 if (!dctx->bytes) in ghash_update()
95 dctx->bytes = GHASH_BLOCK_SIZE - srclen; in ghash_update()
107 if (dctx->bytes) { in ghash_flush()
108 u8 *tmp = dst + (GHASH_BLOCK_SIZE - dctx->bytes); in ghash_flush()
110 while (dctx->bytes--) in ghash_flush()
116 dctx->bytes = 0; in ghash_flush()