Searched refs:max_count (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftLowFrequencyOscillator.java34 private final int max_count = 10; field in class:SoftLowFrequencyOscillator
36 private final double[][] out = new double[max_count][1];
37 private final double[][] delay = new double[max_count][1];
38 private final double[][] delay2 = new double[max_count][1];
39 private final double[][] freq = new double[max_count][1];
40 private final int[] delay_counter = new int[max_count];
41 private final double[] sin_phase = new double[max_count];
42 private final double[] sin_stepfreq = new double[max_count];
43 private final double[] sin_step = new double[max_count];
H A DSoftEnvelopeGenerator.java43 int max_count = 10; field in class:SoftEnvelopeGenerator
45 private final int[] stage = new int[max_count];
46 private final int[] stage_ix = new int[max_count];
47 private final double[] stage_v = new double[max_count];
48 private final int[] stage_count = new int[max_count];
49 private final double[][] on = new double[max_count][1];
50 private final double[][] active = new double[max_count][1];
51 private final double[][] out = new double[max_count][1];
52 private final double[][] delay = new double[max_count][1];
53 private final double[][] attack = new double[max_count][
[all...]
/openjdk7/jdk/test/com/sun/management/UnixOperatingSystemMXBean/
H A DGetOpenFileDescriptorCount.java58 long max_count = mbean.getMaxFileDescriptorCount();
59 if (max_count > 0) {
60 max_count_for_pass = max_count;
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dtrees.c741 int max_count = 7; /* max repeat count */ local
744 if (nextlen == 0) max_count = 138, min_count = 3;
749 if (++count < max_count && curlen == nextlen) {
763 max_count = 138, min_count = 3;
765 max_count = 6, min_count = 3;
767 max_count = 7, min_count = 4;
786 int max_count = 7; /* max repeat count */ local
790 if (nextlen == 0) max_count = 138, min_count = 3;
794 if (++count < max_count && curlen == nextlen) {
814 max_count
[all...]
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A Dhprof_tls.c886 int max_count; local
891 max_count = table_element_count(gdata->tls_table);
892 nbytes = (int)sizeof(jthread)*max_count;
894 nbytes = (int)sizeof(SerialNumber)*max_count;
1029 int max_count; local
1034 max_count = table_element_count(gdata->tls_table);
1035 nbytes = (int)sizeof(jthread)*max_count;
1037 nbytes = (int)sizeof(SerialNumber)*max_count;
1039 nbytes = (int)sizeof(TlsInfo*)*max_count;
1051 nbytes = (int)sizeof(TraceIndex)*max_count;
[all...]
H A Dhprof_check.c771 int max_count; local
776 max_count = 8;
781 max_count = 72;
801 if ( count >= max_count ) {
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEnvBase.hpp294 jint stack_depth, jint max_count,
420 jint start_depth, jint max_count,
425 _max_count = max_count;
419 VM_GetStackTrace(JvmtiEnv *env, JavaThread *java_thread, jint start_depth, jint max_count, jvmtiFrameInfo* frame_buffer, jint* count_ptr) argument
H A DjvmtiEnvBase.cpp813 jint start_depth, jint max_count,
872 for (; count < max_count && jvf != NULL; count++) {
812 get_stack_trace(JavaThread *java_thread, jint start_depth, jint max_count, jvmtiFrameInfo* frame_buffer, jint* count_ptr) argument
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c123 int max_count; member in struct:__anon541
418 /* Dump out gdata->max_count most called classes */
420 cnum >= 0 && cnum >= gdata->ccount - gdata->max_count;
601 gdata->max_count = 10; /* Default max=n */
638 gdata->max_count = atoi(number);

Completed in 327 milliseconds