Lines Matching defs:bytes
76 u32 bytes = min(len, POLY1305_BLOCK_SIZE - dctx->buflen);
78 memcpy(dctx->buf + dctx->buflen, src, bytes);
79 src += bytes;
80 len -= bytes;
81 dctx->buflen += bytes;
106 u32 bytes = min(nbytes, POLY1305_BLOCK_SIZE - dctx->buflen);
108 memcpy(dctx->buf + dctx->buflen, src, bytes);
109 src += bytes;
110 nbytes -= bytes;
111 dctx->buflen += bytes;