Searched defs:next_gc_start_ms (Results 1 - 2 of 2) sorted by relevance

/external/v8/test/unittests/heap/
H A Dmemory-reducer-unittest.cc19 MemoryReducer::State WaitState(int started_gcs, double next_gc_start_ms) { argument
21 next_gc_start_ms, 1.0);
25 MemoryReducer::State RunState(int started_gcs, double next_gc_start_ms) { argument
27 next_gc_start_ms, 1.0);
106 EXPECT_EQ(MemoryReducer::kLongDelayMs + 2, state1.next_gc_start_ms);
112 EXPECT_EQ(MemoryReducer::kLongDelayMs + 2, state1.next_gc_start_ms);
118 EXPECT_EQ(MemoryReducer::kLongDelayMs, state1.next_gc_start_ms);
131 EXPECT_EQ(state0.next_gc_start_ms, state1.next_gc_start_ms);
135 state0, TimerEventLowAllocationRate(state0.next_gc_start_ms
[all...]
/external/v8/src/heap/
H A Dmemory-reducer.h26 // - WAIT <started_gcs> <next_gc_start_ms> <last_gc_time_ms>
31 // The <next_gc_start_ms> is a double that stores the earliest time the next GC
87 State(Action action, int started_gcs, double next_gc_start_ms, argument
91 next_gc_start_ms(next_gc_start_ms),
95 double next_gc_start_ms; member in struct:v8::internal::MemoryReducer::State

Completed in 228 milliseconds