Searched defs:dst (Results 26 - 50 of 358) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageCopy.c33 * mlib_status mlib_ImageCopy(mlib_image *dst,
37 * dst pointer to output or destination image
41 * src and dst must have the same size, type and number of channels.
67 mlib_status mlib_v_ImageCopy(mlib_image *dst, mlib_image *src) argument
71 mlib_status mlib_ImageCopy(mlib_image *dst, const mlib_image *src)
77 mlib_s32 width; /* width in bytes of src and dst */
78 mlib_s32 height; /* height in lines of src and dst */
80 mlib_s32 d_offset; /* bit offset of dst */
82 mlib_s32 dstride; /* stride in bytes in dst */
87 MLIB_IMAGE_CHECK(dst);
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/fs/
H A DUnixCopyFile.c50 * Transfer all bytes from src to dst via user-space buffers
54 (JNIEnv* env, jclass this, jint dst, jint src, jlong cancelAddress)
76 RESTARTABLE(write((int)dst, bufp, len), n);
53 Java_sun_nio_fs_UnixCopyFile_transfer(JNIEnv* env, jclass this, jint dst, jint src, jlong cancelAddress) argument
/openjdk7/jdk/test/java/awt/Graphics/DrawImageBG/
H A DSystemBgColorTest.java81 BufferedImage dst =
84 test(src, dst, systemColorObjects[i]);
88 public static void test(Image src, BufferedImage dst, Color bg) { argument
89 Graphics g = dst.getGraphics();
93 if (dst.getRGB(0, 0) != bg.getRGB()) {
/openjdk7/jdk/test/java/net/URLClassLoader/closetest/
H A DCommon.java29 static void copyFile (String src, String dst) { argument
30 copyFile (new File(src), new File(dst));
33 static void copyDir (String src, String dst) { argument
34 copyDir (new File(src), new File(dst));
37 static void copyFile (File src, File dst) { argument
42 dst.delete();
43 dst.createNewFile();
45 FileOutputStream o = new FileOutputStream (dst);
80 static void copyDir (File src, File dst) { argument
84 if (dst
[all...]
/openjdk7/jdk/test/java/nio/channels/AsynchronousSocketChannel/
H A DLeaky.java53 private final ByteBuffer dst; field in class:Leaky.Connection
66 dst = ByteBuffer.allocate(K*K);
70 dst.clear();
71 readResult = client.read(dst);
/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/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_c_ImageConvClearEdge.c32 * mlib_status mlib_ImageConvClearEdge(mlib_image *dst,
41 * dst Pointer to an image.
56 * dst can have 1, 2, 3 or 4 channels of MLIB_BYTE or MLIB_SHORT or MLIB_INT
62 * If src and dst have just one channel,
72 type *pdst = (type *) mlib_ImageGetData(dst); \
74 mlib_s32 dst_stride = mlib_ImageGetStride(dst) / sizeof(type); \
110 mlib_status mlib_ImageConvClearEdge(mlib_image *dst, argument
118 mlib_s32 dst_width = mlib_ImageGetWidth(dst);
119 mlib_s32 dst_height = mlib_ImageGetHeight(dst);
120 mlib_s32 channel = mlib_ImageGetChannels(dst);
156 mlib_ImageConvZeroEdge(mlib_image *dst, mlib_s32 dx_l, mlib_s32 dx_r, mlib_s32 dy_t, mlib_s32 dy_b, mlib_s32 cmask) argument
[all...]
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_c_ImageLookUp.c32 * mlib_status mlib_ImageLookUp(mlib_image *dst,
37 * dst Pointer to destination image.
65 * dst[x][y][c] = table[c][src[x][y][0]]
72 * dst[x][y][c] = table[c][src[x][y][c]]
81 mlib_status mlib_ImageLookUp(mlib_image *dst, argument
90 MLIB_IMAGE_CHECK(dst);
91 MLIB_IMAGE_SIZE_EQUAL(src, dst);
92 MLIB_IMAGE_CHAN_SRC1_OR_EQ(src, dst);
95 dtype = mlib_ImageGetType(dst);
97 nchan = mlib_ImageGetChannels(dst);
[all...]
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DReplaceable.java110 * characters are copied into the subarray of <code>dst</code>
118 * @param dst the destination array.
122 void getChars(int srcStart, int srcLimit, char dst[], int dstStart); argument
H A DReplaceableString.java108 * characters are copied into the subarray of <code>dst</code>
116 * @param dst the destination array.
120 public void getChars(int srcStart, int srcLimit, char dst[], int dstStart) { argument
121 Utility.getChars(buf, srcStart, srcLimit, dst, dstStart);
/openjdk7/jdk/test/java/util/PluggableLocale/providersrc/
H A DTimeZoneNameProviderImpl.java131 public String getDisplayName(String id, boolean dst, int style, Locale language) { argument
142 String ret = array[(style==TimeZone.LONG?0:1)+(dst?2:0)+1];
/openjdk7/jdk/test/javax/imageio/plugins/gif/
H A DGifTransparencyTest.java35 BufferedImage dst; field in class:GifTransparencyTest
57 dst = ImageIO.read(f);
59 checkResult(src, dst);
68 * - src and dst have different dimension
71 protected void checkResult(BufferedImage src, BufferedImage dst) { argument
76 if (dst.getWidth() != w || dst.getHeight() != h) {
86 g.drawImage(dst, w, 0, null);
114 if (dst != null) {
115 p.add(new ImageComponent(dst), BorderLayou
[all...]
/openjdk7/jdk/test/sun/java2d/loops/
H A DRenderToCustomBufferTest.java81 private static void renderTo(BufferedImage dst) { argument
82 System.out.println("The buffer: " + dst);
83 Graphics2D g = dst.createGraphics();
85 final int w = dst.getWidth();
86 final int h = dst.getHeight();
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_IBM_ASCII_Decoder.java60 private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) { argument
66 char[] da = dst.array();
67 int dp = dst.arrayOffset() + dst.position();
68 int dl = dst.arrayOffset() + dst.limit();
110 dst.position(dp - dst.arrayOffset());
114 private CoderResult decodeBufferLoop(ByteBuffer src, CharBuffer dst) { argument
147 if (!dst
158 decodeLoop(ByteBuffer src, CharBuffer dst) argument
[all...]
H A DDBCS_ONLY_IBM_EBCDIC_Decoder.java66 private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) { argument
72 char[] da = dst.array();
73 int dp = dst.arrayOffset() + dst.position();
74 int dl = dst.arrayOffset() + dst.limit();
100 dst.position(dp - dst.arrayOffset());
104 private CoderResult decodeBufferLoop(ByteBuffer src, CharBuffer dst) { argument
121 if (!dst
132 decodeLoop(ByteBuffer src, CharBuffer dst) argument
[all...]
H A DSimpleEUCDecoder.java54 private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) { argument
60 char[] da = dst.array();
61 int dp = dst.arrayOffset() + dst.position();
62 int dl = dst.arrayOffset() + dst.limit();
104 dst.position(dp - dst.arrayOffset());
108 private CoderResult decodeBufferLoop(ByteBuffer src, CharBuffer dst) { argument
139 if (!dst
150 decodeLoop(ByteBuffer src, CharBuffer dst) argument
[all...]
H A DX11GB2312_OLD.java58 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) { argument
63 byte[] da = dst.array();
64 int dp = dst.arrayOffset() + dst.position();
65 int dl = dst.arrayOffset() + dst.limit();
84 dst.position(dp - dst.arrayOffset());
97 protected CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
103 char[] da = dst
[all...]
H A DX11KSC5601_OLD.java58 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) { argument
62 byte[] da = dst.array();
63 int dp = dst.arrayOffset() + dst.position();
64 int dl = dst.arrayOffset() + dst.limit();
83 dst.position(dp - dst.arrayOffset());
96 protected CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
102 char[] da = dst
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DRenderCache.java32 private SurfaceType dst; field in class:RenderCache.Entry
37 SurfaceType dst,
42 this.dst = dst;
48 SurfaceType dst)
56 (this.dst == dst));
72 SurfaceType dst)
80 if (e.matches(src, comp, dst)) {
94 SurfaceType dst,
35 Entry(SurfaceType src, CompositeType comp, SurfaceType dst, Object value) argument
46 matches(SurfaceType src, CompositeType comp, SurfaceType dst) argument
70 get(SurfaceType src, CompositeType comp, SurfaceType dst) argument
92 put(SurfaceType src, CompositeType comp, SurfaceType dst, Object value) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSingleByteDecoder.java52 private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) { argument
58 char[] da = dst.array();
59 int dp = dst.arrayOffset() + dst.position();
60 int dl = dst.arrayOffset() + dst.limit();
79 dst.position(dp - dst.arrayOffset());
83 private CoderResult decodeBufferLoop(ByteBuffer src, CharBuffer dst) { argument
92 if (!dst
103 decodeLoop(ByteBuffer src, CharBuffer dst) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/ext/
H A DDelegatableDecoder.java38 CoderResult decodeLoop(ByteBuffer src, CharBuffer dst); argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DSymbol.java69 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) { argument
75 byte[] da = dst.array();
76 int dp = dst.arrayOffset() + dst.position();
77 int dl = dst.arrayOffset() + dst.limit();
98 dst.position(dp - dst.arrayOffset());
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBandCombineOp.java126 * @param dst The <CODE>Raster</CODE> in which to store the results
134 public WritableRaster filter(Raster src, WritableRaster dst) { argument
143 if (dst == null) {
144 dst = createCompatibleDestRaster(src);
146 else if (nrows != dst.getNumBands()) {
150 " of bands ([+1]) in dst ("+
154 if (ImagingLib.filter(this, src, dst) != null) {
155 return dst;
159 int[] dstPixel = new int[dst.getNumBands()];
163 int dminX = dst
[all...]
/openjdk7/hotspot/src/cpu/zero/vm/
H A DrelocInfo_zero.cpp72 CodeBuffer* dst) {
77 CodeBuffer* dst) {
71 fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dst) argument
76 fix_relocation_after_move(const CodeBuffer* src, CodeBuffer* dst) argument

Completed in 73 milliseconds

1234567891011>>