Lines Matching refs:bytes
232 size_t bytes) { in poly1305_blocks() argument
250 while (bytes >= 64) { in poly1305_blocks()
412 bytes -= 64; in poly1305_blocks()
423 size_t bytes) { in poly1305_combine() argument
449 if (bytes >= 32) { in poly1305_combine()
667 size_t bytes) { in CRYPTO_poly1305_update() argument
672 if (bytes == 0) { in CRYPTO_poly1305_update()
678 if ((st->leftover == 0) && (bytes > 32)) { in CRYPTO_poly1305_update()
681 bytes -= 32; in CRYPTO_poly1305_update()
683 want = poly1305_min(32 - st->leftover, bytes); in CRYPTO_poly1305_update()
685 bytes -= want; in CRYPTO_poly1305_update()
688 if ((st->leftover < 32) || (bytes == 0)) { in CRYPTO_poly1305_update()
699 want = poly1305_min(64 - st->leftover, bytes); in CRYPTO_poly1305_update()
701 bytes -= want; in CRYPTO_poly1305_update()
712 if (bytes >= 64) { in CRYPTO_poly1305_update()
713 want = (bytes & ~63); in CRYPTO_poly1305_update()
716 bytes -= want; in CRYPTO_poly1305_update()
719 if (bytes) { in CRYPTO_poly1305_update()
720 OPENSSL_memcpy(st->buffer + st->leftover, m, bytes); in CRYPTO_poly1305_update()
721 st->leftover += bytes; in CRYPTO_poly1305_update()