Lines Matching defs:bytes
42 u32 bytes;
103 if (dctx->bytes) {
104 int n = min(srclen, dctx->bytes);
105 u8 *pos = dst + (GHASH_BLOCK_SIZE - dctx->bytes);
107 dctx->bytes -= n;
113 if (!dctx->bytes)
123 dctx->bytes = GHASH_BLOCK_SIZE - srclen;
135 if (dctx->bytes) {
136 u8 *tmp = dst + (GHASH_BLOCK_SIZE - dctx->bytes);
138 while (dctx->bytes--)
146 dctx->bytes = 0;