Searched defs:lists (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/test/java/util/List/
H A DLockStep.java55 void equalLists(List... lists) { argument
56 for (List list : lists)
57 equalLists(list, lists[0]);
70 void lockSteps(List... lists) { argument
71 for (int i = 0; i < lists.length; i++)
72 if (maybe(4)) lists[i] = serialClone(lists[i]);
73 for (final List list : lists)
77 for (final List list : lists) {
81 equalLists(lists);
[all...]
/openjdk7/langtools/test/tools/javac/util/list/
H A DTList.java449 // verify results, and that original and arg lists are unchanged
542 static <T> java.util.List<T> join(java.util.List<T>... lists) { argument
544 for (java.util.List<T> l: lists)
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompilerOracle.cpp248 static MethodMatcher* lists[OracleCommandCount] = { 0, }; variable
252 return ((lists[command] != NULL) &&
254 lists[command]->match(method));
263 if (command == LogCommand && !LogCompilation && lists[LogCommand] == NULL)
265 lists[command] = new MethodMatcher(class_name, c_mode, method_name, m_mode, signature, lists[command]);
266 return lists[command];
275 lists[OptionCommand] = new MethodOptionMatcher(class_name, c_mode, method_name, m_mode,
276 signature, option, lists[OptionCommand]);
277 return lists[OptionComman
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A DreferenceProcessor.cpp75 // Verify that the discovered lists are empty
185 size_t ReferenceProcessor::total_count(DiscoveredList lists[]) { argument
188 total += lists[i].length();
439 // is because of the "clever" way the discovered references lists were
721 // loop over the lists
981 // loop over the lists
1036 // fashion to each of the lists.
1097 // We have separate lists for enqueueing, so no synchronization
1287 // are not active. These lists can be handled here
1362 // thus precleaning the ref lists (whic
[all...]
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectedHeap.cpp368 HeapRegion* lists[] = {_head, _survivor_head}; local
371 for (unsigned int list = 0; list < ARRAY_SIZE(lists); ++list) {
373 HeapRegion *curr = lists[list];
1349 // Disable discovery and empty the discovered lists
1404 // not been removed from the discovered lists.
1887 // Instead of tearing down / rebuilding the free lists here, we
2250 // discovered lists.
2285 // lists requires a barrier.
2305 // lists requires a barrier.
4242 // * Allowing humongous PLABs needlessly churns the region free lists
[all...]

Completed in 104 milliseconds