HomeSort by relevance Sort by last modified time
    Searched refs:old_counter (Results 1 - 2 of 2) 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 205 int old_counter = containing_chunk->store_buffer_counter(); local
206 if (old_counter >= threshold) {
210 containing_chunk->set_store_buffer_counter(old_counter + 1);

Completed in 481 milliseconds