Lines Matching defs:bytes
42 u32 bytes;
84 if (dctx->bytes) {
85 int n = min(srclen, dctx->bytes);
86 u8 *pos = dst + (GHASH_BLOCK_SIZE - dctx->bytes);
88 dctx->bytes -= n;
94 if (!dctx->bytes)
104 dctx->bytes = GHASH_BLOCK_SIZE - srclen;
116 if (dctx->bytes) {
117 u8 *tmp = dst + (GHASH_BLOCK_SIZE - dctx->bytes);
119 while (dctx->bytes--)
127 dctx->bytes = 0;