Searched +defs:val +defs:delay (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftReverb.java47 public void setDelay(int delay) { argument
48 if (delay == 0)
51 delaybuffer = new float[delay];
182 public void setDamp(float val) { argument
183 filtercoeff1 = val;
190 private Delay delay; field in class:SoftReverb
221 delay = new Delay();
312 delay.processReplace(input);
486 delay.setDelay((int)(value * samplerate));
/openjdk7/hotspot/src/share/vm/opto/
H A Dlcm.cpp59 // The val is the pointer being checked for nullness or
61 void Block::implicit_null_check(PhaseCFG *cfg, Node *proj, Node *val, int allowed_reasons) { argument
124 bool is_decoden = ((intptr_t)val) & 1;
125 val = (Node*)(((intptr_t)val) & ~1);
127 assert(!is_decoden || (val->in(0) == NULL) && val->is_Mach() &&
128 (val->as_Mach()->ideal_Opcode() == Op_DecodeN), "sanity");
134 for (DUIterator i = val->outs(); val
756 Node_List delay; local
[all...]
H A Dcompile.cpp2231 Node *delay = NULL; local
2238 delay = n;
2268 // If we have an instruction with a delay slot, and have seen a delay,
2271 assert(delay != NULL, "no unconditional delay instruction");
2272 if (WizardMode) delay->dump();
2274 if (node_bundling(delay)->starts_bundle())
2283 delay->format(_regalloc, tty);
2285 delay
2355 Node* val = n->in(MemNode::ValueIn); local
[all...]

Completed in 46 milliseconds