Lines Matching refs:bulk
67 size_t bulk = 0; in generic_aes_gcm_cipher_update() local
75 bulk = AES_gcm_encrypt(in + res, out + res, len - res, in generic_aes_gcm_cipher_update()
79 ctx->gcm.len.u[1] += bulk; in generic_aes_gcm_cipher_update()
80 bulk += res; in generic_aes_gcm_cipher_update()
82 if (CRYPTO_gcm128_encrypt_ctr32(&ctx->gcm, in + bulk, out + bulk, in generic_aes_gcm_cipher_update()
83 len - bulk, ctx->ctr)) in generic_aes_gcm_cipher_update()
96 size_t bulk = 0; in generic_aes_gcm_cipher_update() local
104 bulk = AES_gcm_decrypt(in + res, out + res, len - res, in generic_aes_gcm_cipher_update()
108 ctx->gcm.len.u[1] += bulk; in generic_aes_gcm_cipher_update()
109 bulk += res; in generic_aes_gcm_cipher_update()
111 if (CRYPTO_gcm128_decrypt_ctr32(&ctx->gcm, in + bulk, out + bulk, in generic_aes_gcm_cipher_update()
112 len - bulk, ctx->ctr)) in generic_aes_gcm_cipher_update()