Lines Matching defs:bytes
85 u32 bytes = min(len, POLY1305_BLOCK_SIZE - dctx->buflen);
87 memcpy(dctx->buf + dctx->buflen, src, bytes);
88 src += bytes;
89 len -= bytes;
90 dctx->buflen += bytes;
129 u32 bytes = min(nbytes, POLY1305_BLOCK_SIZE - dctx->buflen);
131 memcpy(dctx->buf + dctx->buflen, src, bytes);
132 src += bytes;
133 nbytes -= bytes;
134 dctx->buflen += bytes;