Searched refs:avg (Results 1 - 17 of 17) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_implementation/shared/
H A DgcUtil.hpp67 void set_average(float avg) { _average = avg; } argument
75 AdaptiveWeightedAverage(unsigned weight, float avg = 0.0) :
76 _average(avg), _sample_count(0), _weight(weight), _last_sample(0.0),
88 void modify(size_t avg, unsigned wt, bool force = false) { argument
90 _average = (float)avg;
104 static inline float exp_avg(float avg, float sample, argument
107 return (100.0F - weight) * avg / 100.0F + weight * sample / 100.0F;
109 static inline size_t exp_avg(size_t avg, size_t sample, argument
112 return (size_t)exp_avg((float)avg, (floa
134 set_padded_average(float avg) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DJIS_X_0208_Encoder.java54 public JIS_X_0208_Encoder(Charset cs, float avg, float max) { argument
59 avg,
H A DDoubleByteEncoder.java57 float avg, float max)
59 super(cs, avg, max);
75 byte[] repl, float avg, float max)
77 super(cs, avg, max,repl);
55 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, float avg, float max) argument
73 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, byte[] repl, float avg, float max) argument
H A DDoubleByte.java422 Encoder(Charset cs, float avg, float max, byte[] repl, char[] c2b, char[] c2bIndex) { argument
423 super(cs, avg, max, repl);
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.hpp32 ** x1, x2, x3, ..., xN, and can calculate their avg, max, and sd.
38 ** maximum, avg, sd, davg, and dsd are calculated over all its elements
40 ** of the sequence and calculates avg, max, and sd only over them
75 double avg() const; // the average of the sequence
H A DnumberSeq.cpp50 double AbsSeq::avg() const { function in class:AbsSeq
61 double x_bar = avg();
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDoubleByteEncoder.java57 float avg, float max)
59 super(cs, avg, max);
75 byte[] repl, float avg, float max)
77 super(cs, avg, max,repl);
55 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, float avg, float max) argument
73 DoubleByteEncoder(Charset cs, short[] index1, String[] index2, byte[] repl, float avg, float max) argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.hpp942 double avg = sum/n_d; local
943 return (sum_of_squares - 2.0 * avg * sum + n_d * avg * avg) / n_d;
H A Dg1GCPhaseTimes.cpp114 double avg = (double)sum / (double)_length; local
118 buf.append("%.1lf", avg); // Always print average as a double
H A DsurvRateGroup.cpp207 gclog_or_tty->print_cr(" age range survival rate (avg) samples (avg)");
214 index, _summary_surv_rates[index]->avg() * 100.0,
226 sum += _summary_surv_rates[index]->avg() * 100.0;
H A Dg1CollectorPolicy.cpp2167 gclog_or_tty->print_cr("%-27s = %8.2lf s (avg = %8.2lf ms)",
2168 str, sum / 1000.0, seq->avg());
2231 gclog_or_tty->print_cr(" (avg = %8.2fms).", _all_full_gc_times.avg());
H A DconcurrentMark.cpp3143 gclog_or_tty->print_cr("%s%5d %12s: total time = %8.2f s (avg = %8.2f ms).",
3144 prefix, ns.num(), name, ns.sum()/1000.0, ns.avg());
3161 gclog_or_tty->print_cr(" Final counting total time = %8.2f s (avg = %8.2f ms).",
3167 gclog_or_tty->print_cr(" RS scrub total time = %8.2f s (avg = %8.2f ms).",
3788 gclog_or_tty->print_cr(" Step Times (cum): num = %d, avg = %1.2lfms, sd = %1.2lfms",
3789 _step_times_ms.num(), _step_times_ms.avg(),
3795 gclog_or_tty->print_cr(" Clock Intervals (cum): num = %d, avg = %1.2lfms, sd = %1.2lfms",
3796 _all_clock_intervals_ms.num(), _all_clock_intervals_ms.avg(),
/openjdk7/jdk/src/solaris/sample/dtrace/hotspot/
H A Dmethod_compile_stat.d168 avg((timestamp -
172 avg((timestamp -
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsLookAndFeel.java2605 float avg = (((rgb >> 16) & 0xff) / 255f +
2611 avg = Math.min(1.0f, (1f-avg)/(100.0f/35.0f) + avg);
2614 (int)(avg * 255f) << 16 |
2615 (int)(avg * 255f) << 8 |
2616 (int)(avg * 255f);
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DHistogram.java352 double avg = (double) ltotalWeight / totalUnique;
358 +" avgWeight("+round(avg,100)+")");
/openjdk7/hotspot/src/share/vm/classfile/
H A DsymbolTable.cpp462 st->print_cr("Average bucket size : %7.0f", summary.avg());
854 st->print_cr("Average bucket size : %7.0f", summary.avg());
H A DsystemDictionary.cpp2814 int avg = 0; local
2818 avg += n*i;
2823 tty->print_cr("(average parameter size = %3.1f including receiver, if any)", (float)avg / _number_of_methods);

Completed in 115 milliseconds