Searched refs:testValues (Results 1 - 13 of 13) sorted by relevance

/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestKATForGCM.java88 private static TestVector[] testValues = { field in class:TestKATForGCM
260 public boolean execute(TestVector[] testValues) throws Exception { argument
263 for (int i = 0; i < testValues.length; i++) {
265 c.init(Cipher.ENCRYPT_MODE, testValues[i].key, testValues[i].spec);
266 c.updateAAD(testValues[i].aad);
267 byte[] ctPlusTag = c.doFinal(testValues[i].plainText);
269 c.init(Cipher.DECRYPT_MODE, testValues[i].key, testValues[i].spec);
270 c.updateAAD(testValues[
[all...]
/openjdk10/jdk/test/java/math/BigDecimal/
H A DPrecisionTests.java41 BigDecimal[] testValues = {
48 for(BigDecimal bd : testValues) {
53 testValues[0] = testValues[0].multiply(TEN);
54 testValues[1] = testValues[1].multiply(TEN).add(NINE);
H A DEqualsTests.java39 BigDecimal[][] testValues = {
70 for (BigDecimal[] testValuePair : testValues) {
/openjdk10/jdk/test/com/oracle/security/ucrypto/
H A DTestKATForGCM.java86 private static TestVector[] testValues = { field in class:TestKATForGCM
261 for (int i = 0; i < testValues.length; i++) {
263 c.init(Cipher.ENCRYPT_MODE, testValues[i].key, testValues[i].spec);
264 c.updateAAD(testValues[i].aad);
265 byte[] ctPlusTag = c.doFinal(testValues[i].plainText);
267 c.init(Cipher.DECRYPT_MODE, testValues[i].key, testValues[i].spec);
268 c.updateAAD(testValues[i].aad);
272 if (!Arrays.equals(testValues[
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes.test/src/org/graalvm/compiler/nodes/test/
H A DIfNodeCanonicalizationTest.java50 static final byte[] testValues = {-128, -1, 0, 1, 127}; field in class:IfNodeCanonicalizationTest
60 for (byte a : testValues) {
62 for (byte b : testValues) {
64 for (byte c : testValues) {
66 for (byte d : testValues) {
/openjdk10/jdk/test/javax/management/modelmbean/
H A DDescriptorSupportXMLTest.java48 final Object[] testValues = {
74 for (int i = 0; i < testValues.length; i++) {
75 final Object v = testValues[i];
/openjdk10/jdk/test/java/util/Arrays/
H A DCopyMethods.java51 check(a[0] == testValues[0]);
52 check(a[1] == testValues[1]);
53 check(a[2] == testValues[2]);
120 check(sa[0].equals(Integer.toHexString(testValues[0])));
121 check(sa[1].equals(Integer.toHexString(testValues[1])));
122 check(sa[2].equals(Integer.toHexString(testValues[2])));
141 static final int[] testValues; field in class:CopyMethods
143 testValues = new int[1000];
145 for (int i = 0; i < testValues.length; i++) {
146 testValues[
[all...]
/openjdk10/jdk/test/java/util/concurrent/tck/
H A DConcurrentHashMapTest.java421 public void testValues() { method in class:ConcurrentHashMapTest
H A DTreeMapTest.java278 public void testValues() { method in class:TreeMapTest
H A DTreeSubMapTest.java211 public void testValues() { method in class:TreeSubMapTest
H A DConcurrentSkipListMapTest.java295 public void testValues() { method in class:ConcurrentSkipListMapTest
H A DConcurrentSkipListSubMapTest.java212 public void testValues() { method in class:ConcurrentSkipListSubMapTest
/openjdk10/langtools/test/tools/javac/
H A DHexThree.java34 double [] testValues = {
4237 for(int i = 0; i < testValues.length; i++) {
4238 double d = testValues[i];

Completed in 167 milliseconds