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

/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/containers/
H A DStatefulSessionContainer.java1635 // We delay the PreDestroy callback and instance destruction
2520 public void invokePeriodically(long delay, long periodicity, Runnable target) { argument
2524 timer.scheduleAtFixedRate(timerTask, delay, periodicity);
2540 public void setSfsbHaPersistenceType(String val) { argument
2541 this.sfsbHaPersistenceStoreType = val;
2852 public void setRemovalGracePeriodInSeconds(int val) { argument
2853 this.removalGracePeriodInSeconds = val;
2859 long val = 0;
2861 val = backingStore.removeExpired(this.removalGracePeriodInSeconds * 1000L);
2867 containerInfo.ejbName, val);
[all...]
/openjdk7/hotspot/src/share/vm/opto/
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...]
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...]
/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));

Completed in 294 milliseconds