Home
last modified time | relevance | path

Searched refs:liveObjects (Results 1 – 25 of 37) sorted by relevance

12

/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java75 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
100 liveObjects.add(allocation); in Allocator()
131 if (liveObjects.size() != 0) { in Allocator()
132 int elementNum = RND.nextInt(liveObjects.size()); in Allocator()
133 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
134 liveObjects.remove(elementNum); in Allocator()
147 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java77 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
102 liveObjects.add(allocation); in Allocator()
133 if (liveObjects.size() != 0) { in Allocator()
134 int elementNum = RND.nextInt(liveObjects.size()); in Allocator()
135 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
136 liveObjects.remove(elementNum); in Allocator()
149 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java77 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
102 liveObjects.add(allocation); in Allocator()
133 if (liveObjects.size() != 0) { in Allocator()
134 int elementNum = random.nextInt(liveObjects.size()); in Allocator()
135 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
136 liveObjects.remove(elementNum); in Allocator()
149 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java77 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
102 liveObjects.add(allocation); in Allocator()
133 if (liveObjects.size() != 0) { in Allocator()
134 int elementNum = random.nextInt(liveObjects.size()); in Allocator()
135 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
136 liveObjects.remove(elementNum); in Allocator()
149 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java77 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
102 liveObjects.add(allocation); in Allocator()
133 if (liveObjects.size() != 0) { in Allocator()
134 int elementNum = random.nextInt(liveObjects.size()); in Allocator()
135 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
136 liveObjects.remove(elementNum); in Allocator()
149 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java75 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
100 liveObjects.add(allocation); in Allocator()
131 if (liveObjects.size() != 0) { in Allocator()
132 int elementNum = RND.nextInt(liveObjects.size()); in Allocator()
133 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
134 liveObjects.remove(elementNum); in Allocator()
147 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java75 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
100 liveObjects.add(allocation); in Allocator()
131 if (liveObjects.size() != 0) { in Allocator()
132 int elementNum = RND.nextInt(liveObjects.size()); in Allocator()
133 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
134 liveObjects.remove(elementNum); in Allocator()
147 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/gc/g1/humongousObjects/
H A DTestNoAllocationsInHRegions.java77 private final List<byte[]> liveObjects = new LinkedList<>(); field in TestNoAllocationsInHRegions.Allocator
102 liveObjects.add(allocation); in Allocator()
133 if (liveObjects.size() != 0) { in Allocator()
134 int elementNum = RND.nextInt(liveObjects.size()); in Allocator()
135 int shouldFree = liveObjects.get(elementNum).length; in Allocator()
136 liveObjects.remove(elementNum); in Allocator()
149 List<byte[]> wrongHumongousAllocations = liveObjects.stream() in Allocator()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java56 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
112 liveObjects.add(new byte[arraySize]);
120 if (liveObjects.size() != 0) {
121 int elementNum = RND.nextInt(liveObjects.size());
122 int shouldFree = liveObjects.get(elementNum).length;
123 liveObjects.remove(elementNum);
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java59 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
115 liveObjects.add(new byte[arraySize]);
123 if (liveObjects.size() != 0) {
124 int elementNum = RND.nextInt(liveObjects.size());
125 int shouldFree = liveObjects.get(elementNum).length;
126 liveObjects.remove(elementNum);
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java59 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
115 liveObjects.add(new byte[arraySize]);
123 if (liveObjects.size() != 0) {
124 int elementNum = rnd.nextInt(liveObjects.size());
125 int shouldFree = liveObjects.get(elementNum).length;
126 liveObjects.remove(elementNum);
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java59 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
115 liveObjects.add(new byte[arraySize]);
123 if (liveObjects.size() != 0) {
124 int elementNum = rnd.nextInt(liveObjects.size());
125 int shouldFree = liveObjects.get(elementNum).length;
126 liveObjects.remove(elementNum);
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java59 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
115 liveObjects.add(new byte[arraySize]);
123 if (liveObjects.size() != 0) {
124 int elementNum = rnd.nextInt(liveObjects.size());
125 int shouldFree = liveObjects.get(elementNum).length;
126 liveObjects.remove(elementNum);
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java56 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
112 liveObjects.add(new byte[arraySize]);
120 if (liveObjects.size() != 0) {
121 int elementNum = RND.nextInt(liveObjects.size());
122 int shouldFree = liveObjects.get(elementNum).length;
123 liveObjects.remove(elementNum);
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java56 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
112 liveObjects.add(new byte[arraySize]);
120 if (liveObjects.size() != 0) {
121 int elementNum = RND.nextInt(liveObjects.size());
122 int shouldFree = liveObjects.get(elementNum).length;
123 liveObjects.remove(elementNum);
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/test/hotspot/jtreg/gc/logging/
H A DTestUnifiedLoggingSwitchStress.java59 private final List<byte[]> liveObjects = new LinkedList<>(); field in MemoryStresser
115 liveObjects.add(new byte[arraySize]);
123 if (liveObjects.size() != 0) {
124 int elementNum = RND.nextInt(liveObjects.size());
125 int shouldFree = liveObjects.get(elementNum).length;
126 liveObjects.remove(elementNum);
/dports/games/openspades/openspades-0.1.3/Sources/AngelScript/source/
H A Das_gc.cpp750 liveObjects.SetLength(0); in IdentifyGarbageWithCyclicRefs()
776 liveObjects.PushLast(obj); in IdentifyGarbageWithCyclicRefs()
793 if( liveObjects.GetLength() ) in IdentifyGarbageWithCyclicRefs()
795 void *gcObj = liveObjects.PopLast(); in IdentifyGarbageWithCyclicRefs()
969 liveObjects.PushLast(reference); in GCEnumCallback()
/dports/games/supertuxkart/SuperTuxKart-1.2-src/lib/angelscript/source/
H A Das_gc.cpp750 liveObjects.SetLength(0); in IdentifyGarbageWithCyclicRefs()
776 liveObjects.PushLast(obj); in IdentifyGarbageWithCyclicRefs()
793 if( liveObjects.GetLength() ) in IdentifyGarbageWithCyclicRefs()
795 void *gcObj = liveObjects.PopLast(); in IdentifyGarbageWithCyclicRefs()
969 liveObjects.PushLast(reference); in GCEnumCallback()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/AngelScript/source/
H A Das_gc.cpp750 liveObjects.SetLength(0); in IdentifyGarbageWithCyclicRefs()
776 liveObjects.PushLast(obj); in IdentifyGarbageWithCyclicRefs()
793 if( liveObjects.GetLength() ) in IdentifyGarbageWithCyclicRefs()
795 void *gcObj = liveObjects.PopLast(); in IdentifyGarbageWithCyclicRefs()
969 liveObjects.PushLast(reference); in GCEnumCallback()
/dports/lang/angelscript/sdk/angelscript/source/
H A Das_gc.cpp753 liveObjects.SetLength(0); in IdentifyGarbageWithCyclicRefs()
779 liveObjects.PushLast(obj); in IdentifyGarbageWithCyclicRefs()
796 if( liveObjects.GetLength() ) in IdentifyGarbageWithCyclicRefs()
798 void *gcObj = liveObjects.PopLast(); in IdentifyGarbageWithCyclicRefs()
991 liveObjects.PushLast(reference); in GCEnumCallback()
/dports/www/firefox-esr/firefox-91.8.0/js/src/jsapi-tests/
H A DtestGCWeakCache.cpp653 Rooted<GCVector<JSObject*, 0, SystemAllocPolicy>> liveObjects(cx); in TestUniqueIDLookups() local
660 CHECK(liveObjects.get().append(obj)); in TestUniqueIDLookups()
668 for (size_t j = 0; j < liveObjects.length(); j++) { in TestUniqueIDLookups()
669 CHECK(cache.has(liveObjects[j])); in TestUniqueIDLookups()
674 CHECK(cache.count() == liveObjects.length()); in TestUniqueIDLookups()
/dports/www/firefox/firefox-99.0/js/src/jsapi-tests/
H A DtestGCWeakCache.cpp653 Rooted<GCVector<JSObject*, 0, SystemAllocPolicy>> liveObjects(cx); in TestUniqueIDLookups() local
660 CHECK(liveObjects.get().append(obj)); in TestUniqueIDLookups()
668 for (size_t j = 0; j < liveObjects.length(); j++) { in TestUniqueIDLookups()
669 CHECK(cache.has(liveObjects[j])); in TestUniqueIDLookups()
674 CHECK(cache.count() == liveObjects.length()); in TestUniqueIDLookups()
/dports/mail/thunderbird/thunderbird-91.8.0/js/src/jsapi-tests/
H A DtestGCWeakCache.cpp653 Rooted<GCVector<JSObject*, 0, SystemAllocPolicy>> liveObjects(cx); in TestUniqueIDLookups() local
660 CHECK(liveObjects.get().append(obj)); in TestUniqueIDLookups()
668 for (size_t j = 0; j < liveObjects.length(); j++) { in TestUniqueIDLookups()
669 CHECK(cache.has(liveObjects[j])); in TestUniqueIDLookups()
674 CHECK(cache.count() == liveObjects.length()); in TestUniqueIDLookups()
/dports/lang/spidermonkey60/firefox-60.9.0/js/src/jsapi-tests/
H A DtestGCWeakCache.cpp664 Rooted<GCVector<JSObject*, 0, SystemAllocPolicy>> liveObjects(cx); in TestUniqueIDLookups() local
670 if (j % DeadFactor == 0) CHECK(liveObjects.get().append(obj)); in TestUniqueIDLookups()
677 for (size_t j = 0; j < liveObjects.length(); j++) in TestUniqueIDLookups()
678 CHECK(cache.has(liveObjects[j])); in TestUniqueIDLookups()
682 CHECK(cache.count() == liveObjects.length()); in TestUniqueIDLookups()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/jsapi-tests/
H A DtestGCWeakCache.cpp653 Rooted<GCVector<JSObject*, 0, SystemAllocPolicy>> liveObjects(cx); in TestUniqueIDLookups() local
660 CHECK(liveObjects.get().append(obj)); in TestUniqueIDLookups()
668 for (size_t j = 0; j < liveObjects.length(); j++) { in TestUniqueIDLookups()
669 CHECK(cache.has(liveObjects[j])); in TestUniqueIDLookups()
674 CHECK(cache.count() == liveObjects.length()); in TestUniqueIDLookups()

12