Searched refs:dst (Results 101 - 125 of 477) sorted by relevance

1234567891011>>

/openjdk7/hotspot/test/compiler/6431242/
H A DTest.java67 public void test_copy_ints(int[] dst, int[] src) { argument
69 dst[i] = Integer.reverseBytes(src[i]);
73 public void test_copy_ints_reversed(int[] dst, int[] src) { argument
75 dst[i] = 1 + Integer.reverseBytes(src[i]);
79 public void test_copy_ints_store_reversed(int[] dst, int[] src) { argument
81 dst[i] = Integer.reverseBytes(1 + src[i]);
85 public void test_copy_longs(long[] dst, long[] src) { argument
87 dst[i] = Long.reverseBytes(src[i]);
91 public void test_copy_longs_reversed(long[] dst, long[] src) { argument
93 dst[
97 test_copy_longs_store_reversed(long[] dst, long[] src) argument
[all...]
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DAffineTransformOp.java198 * @param dst The <CODE>BufferedImage</CODE> in which to store the results
203 * <code>dst</code> are the same
210 public final BufferedImage filter(BufferedImage src, BufferedImage dst) { argument
215 if (src == dst) {
217 "same as the dst image");
223 BufferedImage origDst = dst;
225 if (dst == null) {
226 dst = createCompatibleDestImage(src, null);
228 origDst = dst;
231 dstCM = dst
337 filter(Raster src, WritableRaster dst) argument
[all...]
H A DRescaleOp.java256 * The dst must be a byte or short type.
258 * All source band sizes must be the same and all dst band sizes
261 private boolean canUseLookup(Raster src, Raster dst) { argument
273 // Check dst sample sizes. All must be 8 or 16 bits.
275 SampleModel dstSM = dst.getSampleModel();
317 * @param dst the destination for the filtering operation
326 public final BufferedImage filter (BufferedImage src, BufferedImage dst) { argument
356 if (dst == null) {
357 dst = createCompatibleDestImage(src, null);
361 if (width != dst
463 filter(Raster src, WritableRaster dst) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DReaderUtil.java56 // dst = destinationOffset + (src - sourceOffset)/sourceSubsampling
67 // dst >= dstMin
68 // dst <= dstmax
72 // dst = destinationOffset + (src - sourceOffset)/sourceSubsampling
101 int dst = destinationOffset +
103 if (dst < dstMin) {
106 if (dst > dstMax) {
111 firstDst = dst; // Record smallest valid pixel
114 secondDst = dst; // Record second smallest valid pixel
116 lastDst = dst; // Recor
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A Darray.cpp88 void* dst = (char*)_data + i*esize; local
89 void* src = (char*)dst + esize;
91 memmove(dst, src, cnt);
97 void* dst = (char*)_data + i*esize; local
98 void* src = (char*)dst + esize;
100 memmove(dst, src, cnt);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DUnicodeDecoder.java67 protected CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
107 if (dst.remaining() < 2)
110 dst.put(c);
111 dst.put(c2);
118 if (!dst.hasRemaining())
121 dst.put(c);
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DGB18030.java12353 CharBuffer dst)
12361 char[] da = dst.array();
12362 int dp = dst.arrayOffset() + dst.position();
12363 int dl = dst.arrayOffset() + dst.limit();
12464 dst.position(dp - dst.arrayOffset());
12469 CharBuffer dst)
12517 if (dst
12352 decodeArrayLoop(ByteBuffer src, CharBuffer dst) argument
12468 decodeBufferLoop(ByteBuffer src, CharBuffer dst) argument
12570 decodeLoop(ByteBuffer src, CharBuffer dst) argument
12605 encodeArrayLoop(CharBuffer src, ByteBuffer dst) argument
12711 encodeBufferLoop(CharBuffer src, ByteBuffer dst) argument
12793 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
H A DDelegatableDecoder.java38 CoderResult decodeLoop(ByteBuffer src, CharBuffer dst); argument
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_blend_proto.h55 /* dst = 0 */
60 mlib_status __mlib_ImageBlend_ZERO_ZERO(mlib_image *dst,
74 /* dst = src2 */
79 mlib_status __mlib_ImageBlend_ZERO_ONE(mlib_image *dst,
93 /* dst = src2 * src1 */
98 mlib_status __mlib_ImageBlend_ZERO_DC(mlib_image *dst,
112 /* dst = src2 * (1 - src1) */
117 mlib_status __mlib_ImageBlend_ZERO_OMDC(mlib_image *dst,
131 /* dst = src2 * ALPHAsrc2 */
136 mlib_status __mlib_ImageBlend_ZERO_SA(mlib_image *dst,
[all...]
H A Dmlib_ImageClipping.h39 const mlib_image *dst,
51 const mlib_image *dst,
H A Dmlib_c_ImageConvCopyEdge.c29 * mlib_ImageConvCopyEdge - Copy src edges to dst edges
33 * mlib_status mlib_ImageConvCopyEdge(mlib_image *dst,
42 * dst Pointer to an dst image.
57 * The src and the dst must be the same type, same width, same height and have same number
59 * overwritten. If both src and dst have just one channel,
63 * Copy src edges to dst edges.
66 * If src and dst have just one channel,
76 type *pdst = (type *) mlib_ImageGetData(dst); \
78 mlib_s32 dst_stride = mlib_ImageGetStride(dst) / sizeo
116 mlib_ImageConvCopyEdge(mlib_image *dst, const mlib_image *src, mlib_s32 dx_l, mlib_s32 dx_r, mlib_s32 dy_t, mlib_s32 dy_b, mlib_s32 cmask) argument
[all...]
H A Dmlib_ImageClipping.c44 * const mlib_image *dst,
53 * const mlib_image *dst,
68 * dst Pointer to destination image.
73 * The src and the dst must be images of the same type.
74 * The src and dst must have same number of channels.
89 const mlib_image *dst,
102 MLIB_IMAGE_CHECK(dst);
104 MLIB_IMAGE_TYPE_EQUAL(dst, src);
105 MLIB_IMAGE_CHAN_EQUAL(dst, src);
107 dst_wid = mlib_ImageGetWidth(dst);
84 mlib_ImageClippingMxN(mlib_image *dst_i, mlib_image *src_i, mlib_image *dst_e, mlib_image *src_e, mlib_s32 *edg_sizes, const mlib_image *dst, const mlib_image *src, mlib_s32 kw, mlib_s32 kh, mlib_s32 kw1, mlib_s32 kh1) argument
173 mlib_ImageClipping(mlib_image *dst_i, mlib_image *src_i, mlib_image *dst_e, mlib_image *src_e, mlib_s32 *edg_sizes, const mlib_image *dst, const mlib_image *src, mlib_s32 ker_size) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousByteChannel.java68 * {@code dst.remaining()} at the time that the read is attempted. Where
90 * @param dst
106 <A> void read(ByteBuffer dst, argument
123 * @param dst
134 Future<Integer> read(ByteBuffer dst); argument
/openjdk7/jdk/test/java/nio/channels/Channels/
H A DReadByte.java38 public int read(ByteBuffer dst) {
39 dst.put((byte) 129);
H A DReadOffset.java39 public int read(ByteBuffer dst) {
40 dst.put((byte)0);
/openjdk7/jdk/test/java/nio/channels/DatagramChannel/
H A DAdaptDatagramSocket.java46 static void test(DatagramSocket ds, InetSocketAddress dst, argument
50 DatagramPacket op = new DatagramPacket(new byte[100], 13, 42, dst);
84 if (!(ip.getSocketAddress().equals(dst))) {
85 throw new Exception("Incorrect sender address, expected: " + dst
90 static void test(InetSocketAddress dst, argument
96 out.println("dst: " + dst);
110 ds.connect(dst);
122 test(ds, dst, shouldTimeout);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DConvert.java87 * Return first index in `dst' past the last copied char.
90 * @param dst The array holding the converted characters..
96 char[] dst, int dindex,
111 dst[j++] = (char)b;
122 char[] dst = new char[len];
123 int len1 = utf2chars(src, sindex, dst, 0, len);
125 System.arraycopy(dst, 0, result, 0, len1);
143 char dst[] = new char[len];
144 int len1 = utf2chars(src, sindex, dst, 0, len);
145 return new String(dst,
95 utf2chars(byte[] src, int sindex, char[] dst, int dindex, int len) argument
167 chars2utf(char[] src, int sindex, byte[] dst, int dindex, int len) argument
[all...]
/openjdk7/jdk/test/sun/java2d/cmm/ColorConvertOp/
H A DColorConvertTest.java42 BufferedImage dst = new BufferedImage(100, 100,
45 op.filter(src, dst);
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DIBM933_OLD.java2684 private CoderResult encodeArrayLoop(CharBuffer src, ByteBuffer dst) { argument
2688 byte[] da = dst.array();
2689 int dp = dst.arrayOffset() + dst.position();
2690 int dl = dst.arrayOffset() + dst.limit();
2879 dst.position(dp - dst.arrayOffset());
2883 private CoderResult encodeBufferLoop(CharBuffer src, ByteBuffer dst) { argument
3003 if (dst
3127 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
H A DIBM970_OLD.java1283 private CoderResult encodeArrayLoop(CharBuffer src, ByteBuffer dst) { argument
1287 byte[] da = dst.array();
1288 int dp = dst.arrayOffset() + dst.position();
1289 int dl = dst.arrayOffset() + dst.limit();
1447 dst.position(dp - dst.arrayOffset());
1451 private CoderResult encodeBufferLoop(CharBuffer src, ByteBuffer dst) { argument
1577 if (dst
1670 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy_f.h47 void *dst,
/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/javax/swing/plaf/nimbus/
H A DDropShadowEffect.java60 * @param dst The destination image to paint effect result into. If this is null then a new image will be created
61 * @param w The width of the src image to apply effect to, this allow the src and dst buffers to be bigger than
63 * @param h The height of the src image to apply effect to, this allow the src and dst buffers to be bigger than
68 BufferedImage applyEffect(BufferedImage src, BufferedImage dst, int w, int h) { argument
73 if (dst != null && dst.getType() != BufferedImage.TYPE_INT_ARGB){
113 if (dst == null) dst = new BufferedImage(w, h,
115 WritableRaster shadowRaster = dst.getRaster();
126 return dst;
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DScaledBlit.java65 SurfaceType dst)
67 Object o = blitcache.get(src, comp, dst);
71 ScaledBlit blit = locate(src, comp, dst);
77 System.out.println("dst: "+dst);
80 blitcache.put(src, comp, dst, blit);
101 public native void Scale(SurfaceData src, SurfaceData dst, argument
120 System.out.println("dst: "+dsttype);
143 public void Scale(SurfaceData src, SurfaceData dst, argument
151 target.Scale(src, dst, com
63 getFromCache(SurfaceType src, CompositeType comp, SurfaceType dst) argument
[all...]
H A DTransformBlit.java67 SurfaceType dst)
69 Object o = blitcache.get(src, comp, dst);
73 TransformBlit blit = locate(src, comp, dst);
79 System.out.println("dst: "+dst);
82 blitcache.put(src, comp, dst, blit);
103 public native void Transform(SurfaceData src, SurfaceData dst, argument
123 System.out.println("dst: "+dsttype);
146 public void Transform(SurfaceData src, SurfaceData dst, argument
153 target.Transform(src, dst, com
65 getFromCache(SurfaceType src, CompositeType comp, SurfaceType dst) argument
[all...]

Completed in 147 milliseconds

1234567891011>>