Lines Matching refs:bulk
68 size_t bulk = 0; in generic_aes_gcm_cipher_update() local
76 bulk = AES_gcm_encrypt(in + res, out + res, len - res, in generic_aes_gcm_cipher_update()
80 ctx->gcm.len.u[1] += bulk; in generic_aes_gcm_cipher_update()
81 bulk += res; in generic_aes_gcm_cipher_update()
83 if (CRYPTO_gcm128_encrypt_ctr32(&ctx->gcm, in + bulk, out + bulk, in generic_aes_gcm_cipher_update()
84 len - bulk, ctx->ctr)) in generic_aes_gcm_cipher_update()
97 size_t bulk = 0; in generic_aes_gcm_cipher_update() local
105 bulk = AES_gcm_decrypt(in + res, out + res, len - res, in generic_aes_gcm_cipher_update()
109 ctx->gcm.len.u[1] += bulk; in generic_aes_gcm_cipher_update()
110 bulk += res; in generic_aes_gcm_cipher_update()
112 if (CRYPTO_gcm128_decrypt_ctr32(&ctx->gcm, in + bulk, out + bulk, in generic_aes_gcm_cipher_update()
113 len - bulk, ctx->ctr)) in generic_aes_gcm_cipher_update()