Searched defs:average (Results 1 - 3 of 3) sorted by relevance
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | gcUtil.cpp | 31 float average) { 45 float new_avg = exp_avg(average, new_sample, adaptive_weight); 53 // Compute the new weighted average 54 float new_avg = compute_adaptive_average(new_sample, average()); 84 // Compute new adaptive weighted average based on new sample. 87 // Now update the deviation and the padded average. 88 float new_avg = average(); 100 float new_avg = average(); 139 // _intercept = _mean_y.average() - _slope * _mean_x.average(); 30 compute_adaptive_average(float new_sample, float average) argument [all...] |
H A D | gcUtil.hpp | 36 // A weighted average maintains a running, weighted average 40 // The average is adaptive in that we smooth it for the 48 float _average; // The last computed average 49 unsigned _sample_count; // How often we've sampled this average 69 // Helper function, computes an adaptive weighted average 70 // given a sample and the last average 71 float compute_adaptive_average(float new_sample, float average); 95 float average() const { return _average; } function in class:AdaptiveWeightedAverage 121 // A weighted average tha [all...] |
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | aprofiler.cpp | 102 int AllocationProfiler::average(size_t alloc_size, int alloc_count) { function in class:AllocationProfiler 128 average(alloc_size, alloc_count), 137 average(total_alloc_size, total_alloc_count));
|
Completed in 31 milliseconds