HomeSort by relevance Sort by last modified time
    Searched refs:old_counter (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/tools/stats_viewer/
stats_table.cs 401 private void UpgradeCounter(IStatsCounter old_counter, IStatsCounter counter)
403 if (old_counter is StatsCounter && counter is StatsTimer)
405 StatsCounterRate rate = new StatsCounterRate(old_counter as StatsCounter,
407 counters_.Remove(old_counter);
410 else if (old_counter is StatsTimer && counter is StatsCounter)
413 old_counter as StatsTimer);
414 counters_.Remove(old_counter);
446 IStatsCounter old_counter = FindExistingCounter(counter.name);
447 if (old_counter != null)
448 UpgradeCounter(old_counter, counter);
    [all...]
  /external/chromium_org/v8/src/
store-buffer.cc 223 int old_counter = containing_chunk->store_buffer_counter(); local
224 if (old_counter == threshold) {
228 containing_chunk->set_store_buffer_counter(old_counter + 1);
  /external/v8/src/
store-buffer.cc 244 int old_counter = containing_chunk->store_buffer_counter(); local
245 if (old_counter == threshold) {
249 containing_chunk->set_store_buffer_counter(old_counter + 1);

Completed in 1635 milliseconds