| /openjdk7/hotspot/src/share/vm/runtime/ |
| H A D | aprofiler.hpp | 56 static void sort_and_print_array(size_t cutoff); 69 static void print(size_t cutoff); // Cutoff in total allocation size (in words)
|
| H A D | aprofiler.cpp | 107 void AllocationProfiler::sort_and_print_array(size_t cutoff) { argument 118 if (alloc_size > cutoff) { 142 void AllocationProfiler::print(size_t cutoff) { argument 147 tty->print_cr("Allocation profile (sizes in bytes, cutoff = %ld bytes):", cutoff * BytesPerWord); 154 sort_and_print_array(cutoff); 157 tty->print_cr("Allocation profile for system classes (sizes in bytes, cutoff = %d bytes):", cutoff * BytesPerWord); 163 sort_and_print_array(cutoff); 165 tty->print_cr("Permanent generation dump (sizes in bytes, cutoff [all...] |
| /openjdk7/hotspot/src/share/vm/interpreter/ |
| H A D | bytecodeHistogram.hpp | 70 static void print(float cutoff = 0.01F) PRODUCT_RETURN; // cutoff in percent 97 static void print(float cutoff = 0.01F) PRODUCT_RETURN; // cutoff in percent
|
| H A D | bytecodeHistogram.cpp | 118 void BytecodeHistogram::print(float cutoff) { argument 134 if (cutoff <= rel) { 141 tty->print_cr("%10d %7.2f%% (cutoff = %.2f%%)", abs_sum, rel_sum, cutoff); 160 void BytecodePairHistogram::print(float cutoff) { argument 176 if (cutoff <= rel) { 185 tty->print_cr("%10d %6.3f%% (cutoff = %.3f%%)", abs_sum, rel_sum, cutoff);
|
| /openjdk7/jdk/src/share/demo/jvmti/hprof/ |
| H A D | hprof_site.h | 52 void site_write(JNIEnv *env, int flags, double cutoff);
|
| H A D | hprof_monitor.h | 49 void monitor_write_contended_time(JNIEnv *env, double cutoff);
|
| H A D | hprof_trace.h | 71 void trace_output_cost(JNIEnv *env, double cutoff);
|
| H A D | hprof_monitor.c | 246 monitor_write_contended_time(JNIEnv *env, double cutoff) argument 280 /* Apply the cutoff */ 291 if (percent < cutoff) {
|
| H A D | hprof_site.c | 370 site_write(JNIEnv *env, int flags, double cutoff) argument 428 if (ratio < cutoff) { 436 cutoff,
|
| H A D | hprof_io.h | 56 double cutoff, jint total_live_bytes,
|
| H A D | hprof_check.c | 874 float cutoff; local 960 cutoff = *((float*)&temp); 966 check_printf("#%d@%d: %s, sz=%d, flags=0x%x, cutoff=%g," 970 flags, cutoff, nblive, nilive,
|
| H A D | hprof_trace.c | 688 trace_output_cost(JNIEnv *env, double cutoff) argument 722 if (percent < cutoff) {
|
| H A D | hprof_io.c | 810 io_write_sites_header(const char * comment_str, jint flags, double cutoff, argument 818 write_u4(*(int *)(&cutoff));
|
| /openjdk7/jdk/src/share/classes/com/sun/media/sound/ |
| H A D | SoftFilter.java | 84 private double cutoff = 44100; field in class:SoftFilter 94 if (cutoff == cent) 96 cutoff = cent; 301 double r = (cutoff / samplerate); 329 double r = (cutoff / samplerate); 356 double r = (cutoff / samplerate); 387 double r = (cutoff / samplerate); 527 if (cutoff < 120) 528 cutoff = 120; 529 double c = (7.0 / 6.0) * Math.PI * 2 * cutoff / samplerat [all...] |
| /openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/ |
| H A D | Package.java | 1084 int cutoff = n.length(); 1087 int dollar2 = lastIndexOf(DOLLAR_MIN, DOLLAR_MAX, n, cutoff-1); 1090 cutoff = dollar2; 1091 if (cutoff == 0) 1094 String obvious = n.substring(0, cutoff)+".java";
|
| /openjdk7/jdk/src/share/classes/java/text/ |
| H A D | DecimalFormat.java | 658 long cutoff = Long.MAX_VALUE / multiplier; 659 if (cutoff < 0) { 660 cutoff = -cutoff; 662 useBigInteger = (number > cutoff);
|
| /openjdk7/hotspot/src/share/vm/opto/ |
| H A D | parse.hpp | 303 static void print(float cutoff = 0.01F); // cutoff in percent
|
| H A D | chaitin.cpp | 175 double cutoff = BLOCK_FREQUENCY(1.0); // Cutoff for high frequency bucket local 183 cutoff *= 0.001; 184 buckval[i] = cutoff; 355 // If max live ranges greater than cutoff, don't color the stack. 356 // This cutoff can be larger than below since it is only done once.
|
| H A D | parse1.cpp | 1281 void Parse::BytecodeParseHistogram::print(float cutoff) { argument 1309 if (cutoff <= rel) { 1316 tty->print_cr("%10d %7.2f%% (cutoff = %.2f%%)", abs_sum, rel_sum, cutoff);
|
| H A D | loopopts.cpp | 897 Node *cutoff = get_ctrl(bol); local 899 // Now search up IDOMs till cutoff, looking for a dominating test 902 while( dom != cutoff ) {
|