Home
last modified time | relevance | path

Searched refs:size_of_objects (Results 1 – 4 of 4) sorted by relevance

/external/v8/src/heap/
Dgc-idle-time-handler.cc65 size_t size_of_objects, size_t mark_compact_speed_in_bytes_per_ms) { in EstimateMarkCompactTime() argument
69 size_t result = size_of_objects / mark_compact_speed_in_bytes_per_ms; in EstimateMarkCompactTime()
136 EstimateMarkCompactTime(heap_state.size_of_objects, in Compute()
139 (heap_state.size_of_objects < kSmallHeapSize && in Compute()
Dgc-idle-time-handler-unittest.cc25 result.size_of_objects = kSizeOfObjects; in DefaultHeapState()
153 static_cast<int>((heap_state.size_of_objects + speed - 1) / speed); in TEST_F()
164 int idle_time_ms = static_cast<int>(heap_state.size_of_objects / speed - 1); in TEST_F()
174 int idle_time_ms = static_cast<int>(heap_state.size_of_objects / speed - 1); in TEST_F()
210 int idle_time_ms = static_cast<int>(heap_state.size_of_objects / speed - 1); in TEST_F()
221 int idle_time_ms = static_cast<int>(heap_state.size_of_objects / speed + 1); in TEST_F()
253 int idle_time_ms = static_cast<int>(heap_state.size_of_objects / speed + 1); in TEST_F()
Dgc-idle-time-handler.h126 size_t size_of_objects; member
160 size_t size_of_objects, size_t mark_compact_speed_in_bytes_per_ms);
Dheap.cc4307 heap_state.size_of_objects = static_cast<size_t>(SizeOfObjects()); in IdleNotification()