Lines Matching full:bulk
131 /* Bulk AAD processing */ in gcm_aad_avx512()
459 size_t bulk = 0, res; in gcm_encrypt_aesni() local
466 bulk = aesni_gcm_encrypt(in + res, out + res, len - res, in gcm_encrypt_aesni()
468 ctx->gcm.len.u[1] += bulk; in gcm_encrypt_aesni()
469 bulk += res; in gcm_encrypt_aesni()
471 if ((error = gcm_encrypt_ctr32(ctx, in + bulk, out + bulk, in gcm_encrypt_aesni()
472 len - bulk)) != 0) in gcm_encrypt_aesni()
621 size_t bulk = 0, res; in gcm_decrypt_aesni() local
628 bulk = aesni_gcm_decrypt(in + res, out + res, len - res, &ctx->aes_ks, in gcm_decrypt_aesni()
630 ctx->gcm.len.u[1] += bulk; in gcm_decrypt_aesni()
631 bulk += res; in gcm_decrypt_aesni()
633 if ((error = gcm_decrypt_ctr32(ctx, in + bulk, out + bulk, len - bulk)) != 0) in gcm_decrypt_aesni()