Searched defs:dst (Results 51 - 75 of 358) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageLookUp.c33 * mlib_status mlib_ImageLookUp(mlib_image *dst,
38 * 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]]
125 mlib_status mlib_ImageLookUp(mlib_image *dst, argument
134 MLIB_IMAGE_CHECK(dst);
135 MLIB_IMAGE_SIZE_EQUAL(src, dst);
136 MLIB_IMAGE_CHAN_SRC1_OR_EQ(src, dst);
139 dtype = mlib_ImageGetType(dst);
141 nchan = mlib_ImageGetChannels(dst);
[all...]
H A Dmlib_v_ImageLookUpS32S32Func.c37 mlib_s32 *dst,
49 for(j = 0; j < ysize; j++, dst += dlb, src += slb){
51 mlib_s32 *da = dst + k;
61 for(j = 0; j < ysize; j++, dst += dlb, src += slb) {
64 mlib_s32 *da = dst + k;
35 mlib_v_ImageLookUp_S32_S32(const mlib_s32 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table, mlib_s32 csize) argument
H A Dmlib_v_ImageLookUpSIS32S32Func.c37 mlib_s32 *dst,
49 for(j = 0; j < ysize; j++, dst += dlb, src += slb){
51 mlib_s32 *da = dst + k;
61 for(j = 0; j < ysize; j++, dst += dlb, src += slb) {
64 mlib_s32 *da = dst + k;
35 mlib_v_ImageLookUpSI_S32_S32(const mlib_s32 *src, mlib_s32 slb, mlib_s32 *dst, mlib_s32 dlb, mlib_s32 xsize, mlib_s32 ysize, const mlib_s32 **table, mlib_s32 csize) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWingDings.java67 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) { argument
73 byte[] da = dst.array();
74 int dp = dst.arrayOffset() + dst.position();
75 int dl = dst.arrayOffset() + dst.limit();
92 dst.position(dp - dst.arrayOffset());
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsUserDefinedFileAttributeView.java239 public int read(String name, ByteBuffer dst) throws IOException { argument
258 if (fc.size() > dst.remaining())
261 while (dst.hasRemaining()) {
262 int n = fc.read(dst);
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageCopy_Bit.c77 mlib_u32 *dp; /* 4-byte aligned start points in dst */
79 mlib_s32 j; /* offset of address in dst */
82 mlib_u32 src, src0, src1, dst; local
95 dst = dp[0];
101 dst = (dst << 24) | ((dst & 0xFF00) << 8) | ((dst >> 8) & 0xFF00) | (dst >> 24);
102 dst
302 mlib_u32 src, src0, src1, dst; local
[all...]
/openjdk7/jdk/test/javax/imageio/metadata/
H A DBooleanAttributes.java129 private static void transform(Source src, Result dst) argument
132 transformerFactory.newTransformer().transform(src, dst);
167 DOMResult dst = new DOMResult();
168 transform(src, dst);
169 Document doc = (Document)dst.getNode();
/openjdk7/jdk/test/javax/imageio/plugins/jpeg/
H A DReadAsGrayTest.java122 BufferedImage dst = reader.read(0, p);
124 verify(src, dst, t);
128 BufferedImage dst,
142 Color c_dst = new Color(dst.getRGB(x, y));
127 verify(BufferedImage src, BufferedImage dst, ImageTypeSpecifier type) argument
/openjdk7/jdk/test/javax/imageio/plugins/png/
H A DGrayPngTest.java133 private BufferedImage dst; field in class:GrayPngTest
187 dst = ImageIO.read(f);
188 System.out.println("dst: " + dst);
199 int dst_rgb = dst.getRGB(i * dx, 5);
/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DDBCS_IBM_ASCII_Encoder.java88 private CoderResult encodeArrayLoop(CharBuffer src, ByteBuffer dst) { argument
92 byte[] da = dst.array();
93 int dp = dst.arrayOffset() + dst.position();
94 int dl = dst.arrayOffset() + dst.limit();
139 dst.position(dp - dst.arrayOffset());
143 private CoderResult encodeBufferLoop(CharBuffer src, ByteBuffer dst) { argument
175 if (dst
192 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
H A DDoubleByteDecoder.java65 private CoderResult decodeArrayLoop(ByteBuffer src, CharBuffer dst) { argument
71 char[] da = dst.array();
72 int dp = dst.arrayOffset() + dst.position();
73 int dl = dst.arrayOffset() + dst.limit();
110 dst.position(dp - dst.arrayOffset());
114 private CoderResult decodeBufferLoop(ByteBuffer src, CharBuffer dst) { argument
141 if (dst
158 decodeLoop(ByteBuffer src, CharBuffer dst) argument
[all...]
H A DMS932_OLD.java80 public CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
81 return super.decodeLoop(src, dst);
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DVerifyType.java48 public static boolean isNullConversion(Class<?> src, Class<?> dst) { argument
49 if (src == dst) return true;
51 if (dst.isInterface()) dst = Object.class;
53 if (src == dst) return true; // check again
54 if (dst == void.class) return true; // drop any return value
55 if (isNullType(src)) return !dst.isPrimitive();
56 if (!src.isPrimitive()) return dst.isAssignableFrom(src);
57 if (!dst.isPrimitive()) return false;
60 if (dst
75 isNullReferenceConversion(Class<?> src, Class<?> dst) argument
139 canPassUnchecked(Class<?> src, Class<?> dst) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/java2d/cmm/
H A DColorTransform.java46 public void colorConvert(BufferedImage src, BufferedImage dst); argument
47 public void colorConvert(Raster src, WritableRaster dst, argument
50 public void colorConvert(Raster src, WritableRaster dst); argument
/openjdk7/jdk/src/share/classes/sun/java2d/loops/
H A DCustomComponent.java77 public static Region getRegionOfInterest(SurfaceData src, SurfaceData dst, argument
93 ret = ret.getIntersection(dst.getBounds());
95 // srcxy in src space maps to dstxy in dst space
116 public void Blit(SurfaceData src, SurfaceData dst, argument
123 Raster dstRast = dst.getRaster(dstx, dsty, w, h);
127 Region roi = CustomComponent.getRegionOfInterest(src, dst, clip,
157 // dst.releaseRaster(dstRast);
171 public void Blit(SurfaceData src, SurfaceData dst, argument
180 (WritableRaster) dst.getRaster(dstx, dsty, w, h);
181 ColorModel dstCM = dst
226 Blit(SurfaceData src, SurfaceData dst, Composite comp, Region clip, int srcx, int srcy, int dstx, int dsty, int w, int h) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSingleByteEncoder.java72 private CoderResult encodeArrayLoop(CharBuffer src, ByteBuffer dst) { argument
78 byte[] da = dst.array();
79 int dp = dst.arrayOffset() + dst.position();
80 int dl = dst.arrayOffset() + dst.limit();
111 dst.position(dp - dst.arrayOffset());
115 private CoderResult encodeBufferLoop(CharBuffer src, ByteBuffer dst) { argument
127 if (!dst
147 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DX11Dingbats.java67 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) { argument
73 byte[] da = dst.array();
74 int dp = dst.arrayOffset() + dst.position();
75 int dl = dst.arrayOffset() + dst.limit();
97 dst.position(dp - dst.arrayOffset());
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisUserDefinedFileAttributeView.java139 public int read(String name, ByteBuffer dst) throws IOException { argument
154 if (fc.size() > dst.remaining())
157 while (dst.hasRemaining()) {
158 int n = fc.read(dst);
282 int dst = openat(nfd, name, (O_CREAT|O_WRONLY|O_TRUNC|O_XATTR),
285 UnixCopyFile.transfer(dst, src, 0L);
287 close(dst);
/openjdk7/jdk/test/sun/nio/cs/
H A DX11CNS11643.java83 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) { argument
87 byte[] da = dst.array();
88 int dp = dst.arrayOffset() + dst.position();
89 int dl = dst.arrayOffset() + dst.limit();
113 dst.position(dp - dst.arrayOffset());
139 protected CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
146 char[] da = dst
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffect.java66 * @param dst The dstination image to paint effect result into. If this is null then a new image will be created
67 * @param w The width of the src image to apply effect to, this allow the src and dst buffers to be bigger than
69 * @param h The height of the src image to apply effect to, this allow the src and dst buffers to be bigger than
73 abstract BufferedImage applyEffect(BufferedImage src, BufferedImage dst, int w, int h); argument
/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 DConvolveOp.java147 * @param dst the destination <code>BufferedImage</code> for the
152 * <code>dst</code>
155 public final BufferedImage filter (BufferedImage src, BufferedImage dst) { argument
159 if (src == dst) {
161 "same as the dst image");
167 BufferedImage origDst = dst;
176 if (dst == null) {
177 dst = createCompatibleDestImage(src, null);
179 origDst = dst;
182 dstCM = dst
234 filter(Raster src, WritableRaster dst) argument
[all...]
H A DLookupOp.java117 * @param dst the <code>BufferedImage</code> in which to
125 public final BufferedImage filter(BufferedImage src, BufferedImage dst) { argument
152 if (dst == null) {
153 dst = createCompatibleDestImage(src, null);
157 if (width != dst.getWidth()) {
160 ") not equal to dst width ("+
161 dst.getWidth()+")");
163 if (height != dst.getHeight()) {
166 ") not equal to dst height ("+
167 dst
253 filter(Raster src, WritableRaster dst) argument
475 byteFilter(ByteLookupTable lookup, Raster src, WritableRaster dst, int width, int height, int numBands) argument
522 shortFilter(ShortLookupTable lookup, Raster src, WritableRaster dst, int width, int height, int numBands) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousFileChannel.java654 * @param dst
669 public abstract <A> void read(ByteBuffer dst, argument
691 * @param dst
704 public abstract Future<Integer> read(ByteBuffer dst, long position); argument
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1SATBCardTableModRefBS.cpp68 G1SATBCardTableModRefBS::write_ref_array_pre_work(T* dst, int count) { argument
70 T* elem_ptr = dst;

Completed in 47 milliseconds

1234567891011>>