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

/openjdk9/hotspot/test/compiler/intrinsics/mathexact/
H A DNestedMathExactTest.java35 public static final int LIMIT = 100; field in class:NestedMathExactTest
36 public static int[] result = new int[LIMIT];
/openjdk9/nashorn/test/script/basic/
H A DJDK-8136694.js57 // LIMIT has to be more than the megamorphic threashold
59 var LIMIT = 20;
60 for (var i = 0; i < LIMIT; i++) {
H A DJDK-8044750.js44 var LIMIT = 20; // should be more than megamorphic threshold set via @option variable
46 for (var i = 0; i < LIMIT; i++) {
75 for (var i = 0; i < LIMIT; i++) {
H A DJDK-8136544.js52 // So, LIMIT should be more than 4 to exercise megamorphic callsites.
54 var LIMIT = 5; // This LIMIT should be more than 4 variable
56 for (var i = 0; i < LIMIT; i++) {
/openjdk9/jdk/test/java/lang/Integer/
H A DToString.java38 final int LIMIT = (1 << 15);
41 for (int d = -LIMIT; d < LIMIT; d++) {
50 for (int c = 1; c < LIMIT; c++) {
51 buildAndTest(Integer.MAX_VALUE - LIMIT + c);
/openjdk9/jdk/test/java/lang/Long/
H A DToString.java38 final int LIMIT = (1 << 15);
41 for (int d = -LIMIT; d < LIMIT; d++) {
50 for (int c = 1; c < LIMIT; c++) {
51 buildAndTest(Long.MAX_VALUE - LIMIT + c);
/openjdk9/hotspot/test/compiler/c1/
H A DTest8172751.java42 private static final int LIMIT = 1_000_000; field in class:Test8172751
46 return counter++ < LIMIT;
/openjdk9/jdk/test/java/nio/channels/Selector/
H A DConnect.java39 static int LIMIT = 100; field in class:Connect
55 for (int j=0; j<LIMIT; j++) {
H A DAlias.java39 static int LIMIT = 20; // Hangs after just 1 if problem is present field in class:Alias
55 for (int j=0; j<LIMIT; j++) {
/openjdk9/jdk/test/java/lang/String/concat/
H A DStringConcatFactoryInvariants.java75 final int LIMIT = 200;
78 Class<?>[] underThreshold = new Class<?>[LIMIT - 1];
79 Class<?>[] threshold = new Class<?>[LIMIT];
80 Class<?>[] overThreshold = new Class<?>[LIMIT + 1];
84 for (int c = 0; c < LIMIT - 1; c++) {
90 threshold[LIMIT - 1] = int.class;
91 overThreshold[LIMIT - 1] = int.class;
92 overThreshold[LIMIT] = int.class;
/openjdk9/jdk/test/java/nio/charset/coders/
H A DBashStreams.java353 static final int LIMIT = 1 << 21; field in class:BashStreams
380 limit = LIMIT;
/openjdk9/hotspot/src/share/tools/IdealGraphVisualizer/Difference/src/com/sun/hotspot/igv/difference/
H A DDifference.java46 public static final double LIMIT = 100.0; field in class:Difference
325 if (min > LIMIT) {
/openjdk9/jdk/test/java/lang/invoke/
H A DRicochetTest.java415 final int LIMIT = 10;
416 for (int i = 0; i < LIMIT; i++) {

Completed in 190 milliseconds