Home
last modified time | relevance | path

Searched refs:gc_count (Results 1 – 5 of 5) sorted by relevance

/external/v8/test/cctest/
Dtest-dictionary.cc182 int gc_count = isolate->heap()->gc_count(); in TestHashSetCausesGC() local
184 CHECK(gc_count == isolate->heap()->gc_count()); in TestHashSetCausesGC()
190 CHECK(gc_count == isolate->heap()->gc_count()); in TestHashSetCausesGC()
194 CHECK(gc_count < isolate->heap()->gc_count()); in TestHashSetCausesGC()
216 int gc_count = isolate->heap()->gc_count(); in TestHashMapCausesGC() local
218 CHECK(gc_count < isolate->heap()->gc_count()); in TestHashMapCausesGC()
Dtest-api.cc17779 int gc_count; in TEST() local
17799 for (gc_count = 1; gc_count < 10; gc_count++) { in TEST()
17806 CHECK_GE(2, gc_count); in TEST()
17821 for (gc_count = 1; gc_count < 10; gc_count++) { in TEST()
17828 CHECK_GE(2, gc_count); in TEST()
17848 for (gc_count = 1; gc_count < 10; gc_count++) { in TEST()
17855 CHECK_GE(2, gc_count); in TEST()
/external/v8/src/
Didentity-map.cc88 gc_counter_ = heap_->gc_count(); in GetEntry()
103 if (gc_counter_ != heap_->gc_count()) Rehash(); in GetEntry()
119 if (result == nullptr && gc_counter_ != heap_->gc_count()) { in FindEntry()
129 gc_counter_ = heap_->gc_count(); in Rehash()
168 gc_counter_ = heap_->gc_count(); in Resize()
/external/v8/test/cctest/heap/
Dtest-heap.cc2748 CHECK_EQ(CcTest::heap()->gc_count(), 0); in TEST()
2783 CHECK_EQ(CcTest::heap()->gc_count(), 1); in TEST()
3302 int gc_count, Handle<JSObject> object, const char* property_name) { in AddPropertyTo() argument
3307 i::FLAG_gc_interval = gc_count; in AddPropertyTo()
3310 CcTest::heap()->set_allocation_timeout(gc_count); in AddPropertyTo()
/external/v8/src/heap/
Dheap.h1481 int gc_count() const { return gc_count_; } in gc_count() function