mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +02:00
8283022: com/sun/crypto/provider/Cipher/AEAD/GCMBufferTest.java failing with -Xcomp after 8273297
Reviewed-by: ascarpino
This commit is contained in:
parent
80a7f7becf
commit
3416bfa256
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
|
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
|
||||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* This code is free software; you can redistribute it and/or modify it
|
||||||
|
@ -86,7 +86,7 @@ abstract class GaloisCounterMode extends CipherSpi {
|
||||||
// data size when buffer is divided up to aid in intrinsics
|
// data size when buffer is divided up to aid in intrinsics
|
||||||
private static final int TRIGGERLEN = 65536; // 64k
|
private static final int TRIGGERLEN = 65536; // 64k
|
||||||
// x86-64 parallel intrinsic data size
|
// x86-64 parallel intrinsic data size
|
||||||
private static final int PARALLEL_LEN = 8192;
|
private static final int PARALLEL_LEN = 7680;
|
||||||
// max data size for x86-64 intrinsic
|
// max data size for x86-64 intrinsic
|
||||||
private static final int SPLIT_LEN = 1048576; // 1MB
|
private static final int SPLIT_LEN = 1048576; // 1MB
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue