Lines Matching defs:rate
23 // λ = 1/rate where rate is the average number of bytes between samples.
27 intptr_t SamplingHeapProfiler::Observer::GetNextSampleInterval(uint64_t rate) {
29 return static_cast<intptr_t>(rate);
31 double next = (-base::ieee754::log(u)) * rate;
40 // we sample at rate R, the probability that an allocation of size S will be
52 Heap* heap, StringsStorage* names, uint64_t rate, int stack_depth,
56 allocation_observer_(heap_, static_cast<intptr_t>(rate), rate, this,
62 rate_(rate),