Searched defs:g1 (Results 1 - 22 of 22) sorted by relevance

/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/gc_implementation/g1/
H A DHeapRegion.java25 package sun.jvm.hotspot.gc_implementation.g1;
H A DHeapRegionSetBase.java25 package sun.jvm.hotspot.gc_implementation.g1;
H A DHeapRegionSeq.java25 package sun.jvm.hotspot.gc_implementation.g1;
H A DG1CollectedHeap.java25 package sun.jvm.hotspot.gc_implementation.g1;
H A DG1MonitoringSupport.java25 package sun.jvm.hotspot.gc_implementation.g1;
/openjdk7/langtools/test/tools/javac/generics/inference/5034571/
H A DT5034571.java45 void f1(G1<?> g1) { argument
46 g1.get().i1();
48 void f2(G1<? extends I2> g1) { argument
49 g1.get().i1();
50 g1.get().i2();
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1MonitoringSupport.cpp26 #include "gc_implementation/g1/g1MonitoringSupport.hpp"
27 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
28 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
173 G1CollectedHeap* g1 = g1h(); local
180 uint young_list_length = g1->young_list()->length();
181 uint survivor_list_length = g1->g1_policy()->recorded_survivor_regions();
186 uint young_list_max_length = g1->g1_policy()->young_list_max_length();
190 _overall_used = g1->used_unlocked();
201 _overall_committed = g1->capacity();
235 G1CollectedHeap* g1 local
[all...]
H A Dg1EvacFailure.hpp28 #include "gc_implementation/g1/concurrentMark.inline.hpp"
29 #include "gc_implementation/g1/dirtyCardQueue.hpp"
30 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
31 #include "gc_implementation/g1/g1_globals.hpp"
32 #include "gc_implementation/g1/g1OopClosures.inline.hpp"
33 #include "gc_implementation/g1/heapRegion.hpp"
34 #include "gc_implementation/g1/heapRegionRemSet.hpp"
47 UpdateRSetDeferred(G1CollectedHeap* g1, DirtyCardQueue* dcq) : argument
48 _g1(g1), _ct_bs((CardTableModRefBS*)_g1->barrier_set()), _dcq(dcq) {}
76 RemoveSelfForwardPtrObjClosure(G1CollectedHeap* g1, ConcurrentMar argument
[all...]
H A Dg1RemSet.hpp75 G1RemSet(G1CollectedHeap* g1, CardTableModRefBS* ct_bs);
138 CountNonCleanMemRegionClosure(G1CollectedHeap* g1) : argument
139 _g1(g1), _n(0), _start_first(NULL)
H A Dg1OopClosures.hpp58 G1ParClosureSuper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state);
64 G1ParPushHeapRSClosure(G1CollectedHeap* g1, argument
66 G1ParClosureSuper(g1, par_scan_state) { }
75 G1ParScanClosure(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state, ReferenceProcessor* rp) : argument
76 G1ParClosureSuper(g1, par_scan_state)
106 G1ParScanPartialArrayClosure(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state, ReferenceProcessor* rp) : argument
107 G1ParClosureSuper(g1, par_scan_state), _scanner(g1, par_scan_state, rp)
140 G1ParCopyClosure(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state, argument
142 _scanner(g1, par_scan_stat
184 FilterIntoCSClosure( DirtyCardToOopClosure* dcto_cl, G1CollectedHeap* g1, OopClosure* oc) argument
[all...]
H A Dg1CollectedHeap.hpp28 #include "gc_implementation/g1/concurrentMark.hpp"
29 #include "gc_implementation/g1/evacuationInfo.hpp"
30 #include "gc_implementation/g1/g1AllocRegion.hpp"
31 #include "gc_implementation/g1/g1HRPrinter.hpp"
32 #include "gc_implementation/g1/g1MonitoringSupport.hpp"
33 #include "gc_implementation/g1/g1RemSet.hpp"
34 #include "gc_implementation/g1/g1YCTypes.hpp"
35 #include "gc_implementation/g1/heapRegionSeq.hpp"
36 #include "gc_implementation/g1/heapRegionSets.hpp"
174 G1STWIsAliveClosure(G1CollectedHeap* g1) argument
[all...]
H A Dg1RemSet.cpp26 #include "gc_implementation/g1/bufferingOopClosure.hpp"
27 #include "gc_implementation/g1/concurrentG1Refine.hpp"
28 #include "gc_implementation/g1/concurrentG1RefineThread.hpp"
29 #include "gc_implementation/g1/g1BlockOffsetTable.inline.hpp"
30 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
31 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
32 #include "gc_implementation/g1/g1HotCardCache.hpp"
33 #include "gc_implementation/g1/g1GCPhaseTimes.hpp"
34 #include "gc_implementation/g1/g1OopClosures.inline.hpp"
35 #include "gc_implementation/g1/g1RemSe
71 G1RemSet(G1CollectedHeap* g1, CardTableModRefBS* ct_bs) argument
368 UpdateRSetCardTableEntryIntoCSetClosure(G1CollectedHeap* g1, CardTableModRefBS* bs) argument
743 G1CollectedHeap* g1 = G1CollectedHeap::heap(); local
[all...]
H A DheapRegion.cpp26 #include "gc_implementation/g1/g1BlockOffsetTable.inline.hpp"
27 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
28 #include "gc_implementation/g1/g1OopClosures.inline.hpp"
29 #include "gc_implementation/g1/heapRegion.inline.hpp"
30 #include "gc_implementation/g1/heapRegionRemSet.hpp"
31 #include "gc_implementation/g1/heapRegionSeq.inline.hpp"
42 HeapRegionDCTOC::HeapRegionDCTOC(G1CollectedHeap* g1, argument
47 _hr(hr), _fk(fk), _g1(g1) { }
773 G1CollectedHeap* g1 = G1CollectedHeap::heap(); local
777 VerifyLiveClosure vl_cl(g1, v
[all...]
H A DconcurrentMark.hpp28 #include "gc_implementation/g1/heapRegionSets.hpp"
45 G1CMIsAliveClosure(G1CollectedHeap* g1) : _g1(g1) { } argument
H A DconcurrentMark.cpp27 #include "gc_implementation/g1/concurrentMark.inline.hpp"
28 #include "gc_implementation/g1/concurrentMarkThread.inline.hpp"
29 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
30 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
31 #include "gc_implementation/g1/g1ErgoVerbose.hpp"
32 #include "gc_implementation/g1/g1Log.hpp"
33 #include "gc_implementation/g1/g1OopClosures.inline.hpp"
34 #include "gc_implementation/g1/g1RemSet.hpp"
35 #include "gc_implementation/g1/heapRegion.inline.hpp"
36 #include "gc_implementation/g1/heapRegionRemSe
1699 G1NoteEndOfConcMarkClosure(G1CollectedHeap* g1, int worker_num, FreeRegionList* local_cleanup_list, OldRegionSet* old_proxy_set, HumongousRegionSet* humongous_proxy_set, HRRSCleanupTask* hrrs_cleanup_task) argument
[all...]
H A Dg1CollectedHeap.cpp27 #include "gc_implementation/g1/bufferingOopClosure.hpp"
28 #include "gc_implementation/g1/concurrentG1Refine.hpp"
29 #include "gc_implementation/g1/concurrentG1RefineThread.hpp"
30 #include "gc_implementation/g1/concurrentMarkThread.inline.hpp"
31 #include "gc_implementation/g1/g1AllocRegion.inline.hpp"
32 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
33 #include "gc_implementation/g1/g1CollectorPolicy.hpp"
34 #include "gc_implementation/g1/g1ErgoVerbose.hpp"
35 #include "gc_implementation/g1/g1EvacFailure.hpp"
36 #include "gc_implementation/g1/g1GCPhaseTime
1189 RebuildRSOutOfRegionClosure(G1CollectedHeap* g1, int worker_i = 0) argument
1207 ParRebuildRSTask(G1CollectedHeap* g1) argument
4598 G1ParClosureSuper(G1CollectedHeap* g1, G1ParScanThreadState* par_scan_state) argument
5027 G1PointsIntoCSOopClosure(G1CollectedHeap* g1) argument
5050 G1FilteredCodeBlobToOopClosure(G1CollectedHeap* g1, OopClosure* cl) argument
5163 G1AlwaysAliveClosure(G1CollectedHeap* g1) argument
5183 G1KeepAliveClosure(G1CollectedHeap* g1) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DGapVector.java63 g1 = initialLength;
96 return g1;
114 private int g1; field in class:GapVector
160 int new_gs = (g1 - g0) + nItems;
173 // Adjust g1.
190 int gapSize = g1 - g0;
202 gapSize = g1 - g0;
225 int oldGapEnd = g1;
230 g1 = newGapEnd;
260 int oldGapEnd = g1;
[all...]
H A DGapContent.java192 int g1 = getGapEnd();
201 chars.offset = g1 + where - g0;
216 System.arraycopy(array, g1, chars.array, before, len - before);
237 int g1 = getGapEnd();
238 int index = (offset < g0) ? offset : offset + (g1 - g0);
284 int g1 = getGapEnd();
285 int offs = (index < g0) ? index : index - (g1 - g0);
418 int g1 = getGapEnd();
422 if (mark.index <= g1) {
445 int g1
839 resetLocation(int endOffset, int g1) argument
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A Dwhitebox.cpp40 #include "gc_implementation/g1/concurrentMark.hpp"
41 #include "gc_implementation/g1/g1CollectedHeap.inline.hpp"
42 #include "gc_implementation/g1/heapRegionRemSet.hpp"
59 G1CollectedHeap* g1 = G1CollectedHeap::heap(); variable
61 const HeapRegion* hr = g1->heap_region_containing(result);
66 G1CollectedHeap* g1 = G1CollectedHeap::heap(); variable
67 size_t nr = g1->free_regions();
72 G1CollectedHeap* g1 = G1CollectedHeap::heap(); variable
73 ConcurrentMark* cm = g1->concurrent_mark();
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DImageComparator.java69 public boolean compare(double r1, double g1, double b1, argument
73 double d2 = Math.abs(g1 - g2);
/openjdk7/jdk/src/share/classes/sun/security/acl/
H A DAclImpl.java375 Enumeration<AclEntry> u1, u2, g1, g2; field in class:AclEnumerator
377 AclEnumerator(Acl acl, Hashtable<?,AclEntry> u1, Hashtable<?,AclEntry> g1, argument
382 this.g1 = g1.elements();
389 g1.hasMoreElements() ||
401 if (g1.hasMoreElements())
402 return g1.nextElement();
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmsps2.c566 cmsBool GammaTableEquals(cmsUInt16Number* g1, cmsUInt16Number* g2, int nEntries) argument
568 return memcmp(g1, g2, nEntries* sizeof(cmsUInt16Number)) == 0;

Completed in 347 milliseconds