Searched refs:freq (Results 1 - 19 of 19) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djchuff.h51 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));
H A Djchuff.c709 jpeg_gen_optimal_table (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]) argument
726 freq[256] = 1; /* make sure 256 has a nonzero count */
740 if (freq[i] && freq[i] <= v) {
741 v = freq[i];
751 if (freq[i] && freq[i] <= v && i != c1) {
752 v = freq[i];
762 freq[c1] += freq[c
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftLowFrequencyOscillator.java39 private final double[][] freq = new double[max_count][1]; field in class:SoftLowFrequencyOscillator
60 freq[i][0] = 0;
87 double f = freq[i][0];
97 (freq[i][0] - 6900.0) / 1200.0);
126 if (name.equals("freq"))
127 return freq[instance];
H A DSoftVoice.java168 double[] freq = co_filter_freq;
174 if (name.equals("freq"))
175 return freq;
/openjdk7/jdk/test/javax/sound/midi/Gervill/SoftLowFrequencyOscillator/
H A DTestProcessControlLogic.java39 private static void testLFO(boolean shared, int instance, float freq, float delay, argument
44 double[] lfo_freq = lfo.get(instance, "freq");
48 lfo_freq[0] = freq;
66 * Math.exp((freq - 6900.0) * (Math.log(2) / 1200.0));
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/protocol/
H A DServantCacheLocalCRDBase.java79 } catch (ForwardException freq) {
80 throw wrapper.illegalForwardRequest( freq ) ;
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/opto/
H A DBlock.java70 public float freq() { method in class:Block
80 out.print(" Freq: " + freq());
/openjdk7/hotspot/src/share/vm/runtime/
H A Dtimer.cpp44 double freq = (double) os::elapsed_frequency(); local
45 return counter/freq;
H A DcompilationPolicy.cpp552 int freq = (invcnt) ? cnt/invcnt : cnt; local
555 if ((msg = shouldInline(m, freq, cnt)) != NULL) {
599 const char* StackWalkCompPolicy::shouldInline(methodHandle m, float freq, int cnt) { argument
612 if ((freq >= InlineFrequencyRatio) || (cnt >= InlineFrequencyCount)) {
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.h88 ush freq; /* frequency count */ member in union:ct_data_s::__anon660
97 #define Freq fc.freq
/openjdk7/hotspot/src/share/vm/opto/
H A DbytecodeInfo.cpp141 int freq = call_site_count / invoke_count; local
144 if ((freq >= InlineFrequencyRatio) ||
151 tty->print_cr("Inlined frequent method (freq=%d count=%d):", freq, call_site_count);
573 float freq = (float)count/(float)invcnt; local
578 return freq;
H A Dblock.cpp228 // Check for way-low freq
507 float freq = in->_freq * in->succ_prob(succ_no);
533 block->_freq = freq;
1052 tty->print_cr("Trace (freq %f)", first_block()->_freq);
1067 from()->_pre_order, to()->_pre_order, freq(), _from_pct, _to_pct);
1091 float freq0 = (*e0)->freq();
1092 float freq1 = (*e1)->freq();
1177 float freq = b->_freq * b->succ_prob(j);
1178 int from_pct = (int) ((100 * freq) / b->_freq);
1179 int to_pct = (int) ((100 * freq) / targe
[all...]
H A Dblock.hpp534 void update_succ_freq(Block* b, float freq);
558 void compute_freq(); // compute frequency with loop assuming head freq 1.0f
600 CFGEdge(Block *from, Block *to, float freq, int from_pct, int to_pct) : argument
601 _from(from), _to(to), _freq(freq),
606 float freq() const { return _freq; } function in class:CFGEdge
H A Dgcm.cpp1039 tty->print_cr("# B%d: start latency for [%4d]=%d, end latency for [%4d]=%d, freq=%g",
1070 tty->print_cr("# B%d: start latency for [%4d]=%d, end latency for [%4d]=%d, freq=%g",
1093 tty->print_cr("# Choose block B%d with start latency=%d and freq=%g",
1633 float freq = s->_freq; local
1638 update_succ_freq(sb, freq * b->succ_prob(j));
1646 update_succ_freq(eb, freq * prob);
1708 float freq = _succs[i]->_freq; local
1709 return freq / (freq + _succs[1-i]->_freq);
1760 // Do not push out freq t
1904 update_succ_freq(Block* b, float freq) argument
[all...]
H A Dcompile.hpp166 Constant(BasicType type, jvalue value, float freq = 0.0f, bool can_be_reused = true) :
170 _freq(freq),
186 float freq() const { return _freq; } function in class:Compile::Constant
187 void inc_freq(float freq) { _freq += freq; } argument
H A Dcompile.cpp3350 if (a->freq() > b->freq()) return -1;
3351 if (a->freq() < b->freq()) return 1;
3449 _constants.adr_at(idx)->inc_freq(con.freq()); // increase the frequency by the current value
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/oa/poa/
H A DPOAPolicyMediatorImpl_R_USM.java146 } catch (ForwardRequest freq) {
152 throw freq ;
H A DPOAImpl.java1636 } catch (ForwardRequest freq) {
1637 throw new ForwardException( getORB(), freq.forward_reference ) ;
/openjdk7/hotspot/src/os/windows/vm/
H A Dos_windows.cpp831 double freq = performance_frequency; local
832 jlong time = (jlong)((current/freq) * NANOSECS_PER_SEC);
847 jlong freq = performance_frequency; local
848 if (freq < NANOSECS_PER_SEC) {
852 } else if (freq > NANOSECS_PER_SEC) {
856 info_ptr->max_value = (jlong)(max_counter / (freq / NANOSECS_PER_SEC));

Completed in 4345 milliseconds