Searched defs:dst (Results 151 - 175 of 358) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/java2d/pipe/
H A DBufferedMaskBlit.java39 * dst = ((src <MODE> dst) * pathA) + (dst * (1 - pathA))
46 * dst = (src * pathA) <SrcOver> dst
91 public void MaskBlit(SurfaceData src, SurfaceData dst, argument
109 blitop.Blit(src, dst,
123 validateContext(dst, comp, clip);
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DAsynchronousFileChannelImpl.java211 abstract <A> Future<Integer> implRead(ByteBuffer dst, argument
217 public final Future<Integer> read(ByteBuffer dst, long position) { argument
218 return implRead(dst, position, null, null);
222 public final <A> void read(ByteBuffer dst, argument
229 implRead(dst, position, attachment, handler);
H A DIOUtil.java185 static int read(FileDescriptor fd, ByteBuffer dst, long position, argument
189 if (dst.isReadOnly())
191 if (dst instanceof DirectBuffer)
192 return readIntoNativeBuffer(fd, dst, position, nd);
195 ByteBuffer bb = Util.getTemporaryDirectBuffer(dst.remaining());
200 dst.put(bb);
H A DSimpleAsynchronousFileChannelImpl.java289 <A> Future<Integer> implRead(final ByteBuffer dst, argument
298 if (dst.isReadOnly())
302 if (!isOpen() || (dst.remaining() == 0)) {
321 n = IOUtil.read(fdObj, dst, position, nd);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DISO_8859_1.java69 CharBuffer dst)
76 char[] da = dst.array();
77 int dp = dst.arrayOffset() + dst.position();
78 int dl = dst.arrayOffset() + dst.limit();
93 dst.position(dp - dst.arrayOffset());
98 CharBuffer dst)
104 if (!dst
68 decodeArrayLoop(ByteBuffer src, CharBuffer dst) argument
97 decodeBufferLoop(ByteBuffer src, CharBuffer dst) argument
115 decodeLoop(ByteBuffer src, CharBuffer dst) argument
124 decode(byte[] src, int sp, int len, char[] dst) argument
150 encodeArrayLoop(CharBuffer src, ByteBuffer dst) argument
184 encodeBufferLoop(CharBuffer src, ByteBuffer dst) argument
208 encodeLoop(CharBuffer src, ByteBuffer dst) argument
222 encode(char[] src, int sp, int len, byte[] dst) argument
[all...]
H A DSingleByte.java42 Buffer dst, int dp)
45 dst.position(dp - dst.arrayOffset());
58 private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) { argument
63 char[] da = dst.array();
64 int dp = dst.arrayOffset() + dst.position();
65 int dl = dst.arrayOffset() + dst.limit();
77 src, sp, dst, d
40 withResult(CoderResult cr, Buffer src, int sp, Buffer dst, int dp) argument
85 decodeBufferLoop(ByteBuffer src, CharBuffer dst) argument
103 decodeLoop(ByteBuffer src, CharBuffer dst) argument
119 decode(byte[] src, int sp, int len, char[] dst) argument
155 encodeArrayLoop(CharBuffer src, ByteBuffer dst) argument
190 encodeBufferLoop(CharBuffer src, ByteBuffer dst) argument
217 encodeLoop(CharBuffer src, ByteBuffer dst) argument
236 encode(char[] src, int sp, int len, byte[] dst) argument
[all...]
H A DSurrogate.java280 * @param dst The destination buffer, to which one or two UTF-16
287 public int generate(int uc, int len, CharBuffer dst) { argument
294 if (dst.remaining() < 1) {
298 dst.put(c);
302 if (dst.remaining() < 2) {
306 dst.put(Character.highSurrogate(uc));
307 dst.put(Character.lowSurrogate(uc));
H A DUS_ASCII.java69 CharBuffer dst)
76 char[] da = dst.array();
77 int dp = dst.arrayOffset() + dst.position();
78 int dl = dst.arrayOffset() + dst.limit();
97 dst.position(dp - dst.arrayOffset());
102 CharBuffer dst)
109 if (!dst
68 decodeArrayLoop(ByteBuffer src, CharBuffer dst) argument
101 decodeBufferLoop(ByteBuffer src, CharBuffer dst) argument
123 decodeLoop(ByteBuffer src, CharBuffer dst) argument
137 decode(byte[] src, int sp, int len, char[] dst) argument
168 encodeArrayLoop(CharBuffer src, ByteBuffer dst) argument
203 encodeBufferLoop(CharBuffer src, ByteBuffer dst) argument
227 encodeLoop(CharBuffer src, ByteBuffer dst) argument
241 encode(char[] src, int sp, int len, byte[] dst) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DEUC_JP_LINUX.java103 CharBuffer dst)
111 char[] da = dst.array();
112 int dp = dst.arrayOffset() + dst.position();
113 int dl = dst.arrayOffset() + dst.limit();
154 dst.position(dp - dst.arrayOffset());
159 CharBuffer dst)
189 if (dst
102 decodeArrayLoop(ByteBuffer src, CharBuffer dst) argument
158 decodeBufferLoop(ByteBuffer src, CharBuffer dst) argument
200 decodeLoop(ByteBuffer src, CharBuffer dst) argument
264 encodeArrayLoop(CharBuffer src, ByteBuffer dst) argument
317 encodeBufferLoop(CharBuffer src, ByteBuffer dst) argument
361 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
H A DIBM964.java123 private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) { argument
129 char[] da = dst.array();
130 int dp = dst.arrayOffset() + dst.position();
131 int dl = dst.arrayOffset() + dst.limit();
193 dst.position(dp - dst.arrayOffset());
197 private CoderResult decodeBufferLoop(ByteBuffer src, CharBuffer dst) { argument
246 if (!dst
257 decodeLoop(ByteBuffer src, CharBuffer dst) argument
[all...]
H A DISCII91.java524 CharBuffer dst)
532 char[] da = dst.array();
533 int dp = dst.arrayOffset() + dst.position();
534 int dl = dst.arrayOffset() + dst.limit();
669 dst.position(dp - dst.arrayOffset());
674 CharBuffer dst)
687 if (dst
523 decodeArrayLoop(ByteBuffer src, CharBuffer dst) argument
673 decodeBufferLoop(ByteBuffer src, CharBuffer dst) argument
811 decodeLoop(ByteBuffer src, CharBuffer dst) argument
844 encodeArrayLoop(CharBuffer src, ByteBuffer dst) argument
918 encodeBufferLoop(CharBuffer src, ByteBuffer dst) argument
980 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
H A DISO2022_CN.java140 CharBuffer dst)
216 if (dst.remaining() < 1)
222 dst.put(c);
238 if (dst.remaining() < 1)
242 dst.put((char)(b1 & 0xff)); //clear the upper byte
252 dst.put(c);
263 CharBuffer dst)
275 char[] da = dst.array();
276 int dp = dst.arrayOffset() + dst
139 decodeBufferLoop(ByteBuffer src, CharBuffer dst) argument
262 decodeArrayLoop(ByteBuffer src, CharBuffer dst) argument
400 decodeLoop(ByteBuffer src, CharBuffer dst) argument
[all...]
H A DSJIS.java102 public CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
103 return super.decodeLoop(src, dst);
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSourceChannelImpl.java158 public int read(ByteBuffer dst) throws IOException { argument
168 n = IOUtil.read(fd, dst, -1, nd);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixCopyFile.java599 static native void transfer(int dst, int src, long addressToPollForCancel) argument
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DFastStringBuffer.java1242 * @param dst the destination array.
1252 * <code>dst.length</code></ul>
1253 * @exception NullPointerException if <code>dst</code> is <code>null</code>
1255 private void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
H A DXMLString.java111 * @param dst the destination array.
121 * <code>dst.length</code></ul>
122 * @exception NullPointerException if <code>dst</code> is <code>null</code>
124 public abstract void getChars(int srcBegin, int srcEnd, char dst[], argument
H A DXMLStringDefault.java132 * @param dst the destination array.
142 * <code>dst.length</code></ul>
143 * @exception NullPointerException if <code>dst</code> is <code>null</code>
145 public void getChars(int srcBegin, int srcEnd, char dst[], argument
151 dst[destIndex++] = m_str.charAt(i);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXString.java266 * @param dst the destination array.
276 * <code>dst.length</code></ul>
277 * @exception NullPointerException if <code>dst</code> is <code>null</code>
279 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
281 str().getChars(srcBegin, srcEnd, dst, dstBegin);
H A DXStringForFSB.java241 * @param dst the destination array.
251 * <code>dst.length</code></ul>
252 * @exception NullPointerException if <code>dst</code> is <code>null</code>
254 public void getChars(int srcBegin, int srcEnd, char dst[], int dstBegin) argument
264 if (n > (dst.length - dstBegin))
265 n = (dst.length - dstBegin);
273 dst[d++] = fsb.charAt(i);
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLEngine.java215 * SSLEngineResult r = engine.unwrap(src, dst);
218 * // Could attempt to drain the dst buffer of any already obtained
221 * ByteBuffer b = ByteBuffer.allocate(appSize + dst.position());
222 * dst.flip();
223 * b.put(dst);
224 * dst = b;
230 * if (netSize > dst.capacity()) {
351 * sslEngine.wrap(src, dst);
352 * outboundQueue.put(dst);
444 * engine.wrap(new ByteBuffer [] { src }, 0, 1, dst);}
467 wrap(ByteBuffer src, ByteBuffer dst) argument
504 wrap(ByteBuffer [] srcs, ByteBuffer dst) argument
588 wrap(ByteBuffer [] srcs, int offset, int length, ByteBuffer dst) argument
622 unwrap(ByteBuffer src, ByteBuffer dst) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DColorConvertOp.java677 * <code>dst</code> and <code>src</code> color spaces
752 BufferedImage dst,
759 if (dst == null) {
760 dst = createCompatibleDestImage(src, null);
761 dstColorSpace = dst.getColorModel().getColorSpace();
763 if ((h != dst.getHeight()) || (w != dst.getWidth())) {
769 WritableRaster dstRas = dst.getRaster();
771 ColorModel dstCM = dst.getColorModel();
778 /* possible non-ICC src, some profiles, possible non-ICC dst */
750 nonICCBIFilter(BufferedImage src, ColorSpace srcColorSpace, BufferedImage dst, ColorSpace dstColorSpace) argument
944 nonICCRasterFilter(Raster src, WritableRaster dst) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DAbstractStringBuilder.java320 * destination character array <code>dst</code>. The first character to
324 * characters are copied into the subarray of <code>dst</code> starting
332 * @param dst the array to copy the data into.
333 * @param dstBegin offset into <code>dst</code>.
334 * @throws NullPointerException if <code>dst</code> is
345 * <code>dst.length</code>
348 public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin) argument
356 System.arraycopy(value, srcBegin, dst, dstBegin, srcEnd - srcBegin);
H A DStringBuffer.java215 public synchronized void getChars(int srcBegin, int srcEnd, char[] dst, argument
218 super.getChars(srcBegin, srcEnd, dst, dstBegin);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DSF2Instrument.java669 ModelDestination dst = convertDestination(
672 if (dst == null)
675 ((ModelStandardTransform)dst.getTransform()).setTransform(
678 ModelConnectionBlock conn = new ModelConnectionBlock(src1, src2, amount, dst);
733 static ModelDestination convertDestination(int dst, argument
736 switch (dst) {

Completed in 92 milliseconds

1234567891011>>