Lines Matching defs:sample
48 // Register an application-defined function to add a sample
70 // sample values. buckets is the maximum number of buckets
77 // Add a sample to a histogram created with the CreateHistogram
79 void AddHistogramSample(void* histogram, int sample) {
81 return add_histogram_sample_function_(histogram, sample);
157 // Add a single sample to this histogram.
158 void AddSample(int sample);
230 // Add a single sample to this histogram.
231 V8_EXPORT_PRIVATE void AddTimedSample(base::TimeDelta sample);
367 // AggretatedMemoryHistogram collects (time, value) sample pairs and turns
369 // backing histogram receives one sample every T ms, where the T is controlled
372 // More formally: let F be a real-valued function that maps time to sample
374 // each time interval [x; x + T) the backing histogram gets one sample value
390 // 2) (last_ms_, last_value_) is the last received sample.
456 // We hit the sample limit, ignore the remaining samples.
500 // Register an application-defined function to add a sample
501 // to a histogram. Will be used in all subsequent sample additions.
634 void AddHistogramSample(void* histogram, int sample) {
635 stats_table_.AddHistogramSample(histogram, sample);