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

/openjdk7/jdk/test/java/util/concurrent/ConcurrentHashMap/
H A DMapCheck.java47 static final int absentSize = 1 << 17; field in class:MapCheck
48 static final int absentMask = absentSize - 1;
49 static Object[] absent = new Object[absentSize];
83 for (int i = 0; i < absentSize; ++i) absent[i] = new Object();
222 int step = absentSize / iters;
223 for (int i = 0; i < absentSize; i += step)
504 t4("ContainsKey ", absentSize, s, absent, 0);
507 t1("Get (absent) ", absentSize, s, absent, 0);
508 t2("Remove (absent) ", absentSize, s, absent, 0);

Completed in 466 milliseconds