Home
last modified time | relevance | path

Searched refs:sample_buckets_ (Results 1 – 2 of 2) sorted by relevance

/external/webrtc/rtc_base/
Drate_tracker.cc25 sample_buckets_(new int64_t[bucket_count + 1]), in RateTracker()
33 delete[] sample_buckets_; in ~RateTracker()
79 int64_t total_samples = ((sample_buckets_[start_bucket] * in ComputeRateForInterval()
86 total_samples += sample_buckets_[i]; in ComputeRateForInterval()
122 sample_buckets_[current_bucket_] = 0; in AddSamples()
130 sample_buckets_[current_bucket_] += sample_count; in AddSamples()
145 sample_buckets_[current_bucket_] = 0; in EnsureInitialized()
Drate_tracker.h60 int64_t* sample_buckets_; variable