Searched refs:started_gcs (Results 1 – 2 of 2) sorted by relevance
/external/v8/src/heap/ |
D | memory-reducer.cc | 66 state_.started_gcs); in NotifyTimer() 107 "Memory reducer: finished GC #%d (%s)\n", state_.started_gcs, in NotifyMarkCompact() 164 if (state.started_gcs >= kMaxNumberOfGCs) { in Step() 171 return State(kRun, state.started_gcs + 1, 0.0, in Step() 177 return State(kWait, state.started_gcs, event.time_ms + kLongDelayMs, in Step() 181 return State(kWait, state.started_gcs, event.time_ms + kLongDelayMs, in Step() 188 if (state.started_gcs < kMaxNumberOfGCs && in Step() 189 (event.next_gc_likely_to_collect_more || state.started_gcs == 1)) { in Step() 190 return State(kWait, state.started_gcs, event.time_ms + kShortDelayMs, in Step()
|
D | memory-reducer.h | 88 State(Action action, int started_gcs, double next_gc_start_ms, in State() 91 started_gcs(started_gcs), in State() 96 int started_gcs; member 142 return state_.action == kDone && state_.started_gcs > 0; in ShouldGrowHeapSlowly()
|