HomeSort by relevance Sort by last modified time
    Searched full:delta_buckets (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/content/browser/download/
rate_estimator.cc 51 int64 delta_buckets = seconds_since_oldest / bucket_time_.InSeconds(); local
52 DCHECK(delta_buckets >= 0);
53 size_t index_offset = static_cast<size_t>(delta_buckets);
55 int current_index = (oldest_index_ + delta_buckets) % history_.size();
80 int64 delta_buckets = seconds_since_oldest / bucket_time_.InSeconds(); local
84 if (delta_buckets < 0) {
88 size_t delta_index = static_cast<size_t>(delta_buckets);

Completed in 48 milliseconds