Searched defs:cutoff (Results 1 - 11 of 11) sorted by relevance

/openjdk7/hotspot/src/share/vm/runtime/
H A Daprofiler.cpp107 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 DbytecodeHistogram.cpp118 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/classes/com/sun/media/sound/
H A DSoftFilter.java84 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/demo/jvmti/hprof/
H A Dhprof_monitor.c246 monitor_write_contended_time(JNIEnv *env, double cutoff) argument
280 /* Apply the cutoff */
291 if (percent < cutoff) {
H A Dhprof_site.c370 site_write(JNIEnv *env, int flags, double cutoff) argument
428 if (ratio < cutoff) {
436 cutoff,
H A Dhprof_trace.c688 trace_output_cost(JNIEnv *env, double cutoff) argument
722 if (percent < cutoff) {
H A Dhprof_check.c874 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 Dhprof_io.c810 io_write_sites_header(const char * comment_str, jint flags, double cutoff, argument
818 write_u4(*(int *)(&cutoff));
/openjdk7/hotspot/src/share/vm/opto/
H A Dchaitin.cpp175 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 Dloopopts.cpp897 Node *cutoff = get_ctrl(bol); local
899 // Now search up IDOMs till cutoff, looking for a dominating test
902 while( dom != cutoff ) {
H A Dparse1.cpp1281 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);

Completed in 905 milliseconds