Lines Matching defs:bytes
27 u32 bytes;
61 if (dctx->bytes) {
62 u8 *pos = buf + (GHASH_BLOCK_SIZE - dctx->bytes);
64 n = min(srclen, dctx->bytes);
65 dctx->bytes -= n;
71 if (!dctx->bytes) {
85 dctx->bytes = GHASH_BLOCK_SIZE - srclen;
96 if (dctx->bytes) {
97 u8 *pos = buf + (GHASH_BLOCK_SIZE - dctx->bytes);
99 memset(pos, 0, dctx->bytes);
101 dctx->bytes = 0;