Searched defs:pin (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DWeakRef.java35 * several ways. The methods pin() and unpin() can be used to set
71 public synchronized void pin() { method in class:WeakRef
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSoftAudioProcessor.java39 public void setInput(int pin, SoftAudioBuffer input); argument
41 public void setOutput(int pin, SoftAudioBuffer output); argument
H A DSoftLimiter.java50 public void setInput(int pin, SoftAudioBuffer input) { argument
51 if (pin == 0)
53 if (pin == 1)
57 public void setOutput(int pin, SoftAudioBuffer output) { argument
58 if (pin == 0)
60 if (pin == 1)
H A DSoftChorus.java320 public void setInput(int pin, SoftAudioBuffer input) { argument
321 if (pin == 0)
329 public void setOutput(int pin, SoftAudioBuffer output) { argument
330 if (pin == 0)
332 if (pin == 1)
334 if (pin == 2)
H A DSoftReverb.java263 public void setInput(int pin, SoftAudioBuffer input) { argument
264 if (pin == 0)
268 public void setOutput(int pin, SoftAudioBuffer output) { argument
269 if (pin == 0)
271 if (pin == 1)
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java374 // get the offset, and pin to that vector to get the length.
697 boolean pin(double lo, double hi, LineInfo result) { method in class:LayoutPathImpl.SegmentPath.LineInfo
730 * parameters to pass to pin(double, double, LineInfo).
732 boolean pin(int ix, LineInfo result) { method in class:LayoutPathImpl.SegmentPath.LineInfo
747 return pin(lo, hi, result);
795 if (li.pin(ix, temp)) {
796 if (LOGMAP) LOG.format("pin: %g, %g to %g, %g\n", temp.sx, temp.sy, temp.lx, temp.ly);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.hpp424 void pin(PinReason reason) { _pin_state |= reason; } function in class:Instruction
425 void pin() { _pin_state |= PinUnknown; } function in class:Instruction
670 pin();
722 // pin of all instructions with memory access
723 pin();
784 pin();
808 pin(); // instruction with side effect (null exception or range check throwing)
911 pin();
989 if (can_trap()) pin();
1097 pin(Instructio
[all...]

Completed in 61 milliseconds