Searched defs:dst (Results 1 - 25 of 358) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DReadableByteChannel.java55 * <tt>dst.remaining()</tt>, at the moment this method is invoked.
81 * @param dst
106 public int read(ByteBuffer dst) throws IOException; argument
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
H A DSeekableByteChannel.java65 int read(ByteBuffer dst) throws IOException; argument
/openjdk7/hotspot/test/compiler/6958485/
H A DTest.java34 public static void init(Object src[], boolean[] dst) { argument
37 dst[i] = src[i] != null ? false : true;
43 boolean[] dst = new boolean[34];
45 init(src, dst);
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dmlib_v_ImageConstXor.c32 * mlib_status mlib_ImageConstXor(mlib_image *dst,
37 * dst Pointer to destination image
42 * The src and dst must be the same type and the same size.
50 * And dst(i,j) = c & src(i,j)
51 * Or dst(i,j) = c | src(i,j)
52 * Xor dst(i,j) = c ^ src(i,j)
53 * NotAnd dst(i,j) = ~(c & src(i,j))
54 * NotOr dst(i,j) = ~(c | src(i,j))
55 * NotXor dst(i,j) = ~(c ^ src(i,j))
56 * AndNot dst(
88 __mlib_ImageConstXor(mlib_image *dst, mlib_image *src, mlib_s32 *c) argument
[all...]
H A Dmlib_v_ImageXor.c32 * mlib_status mlib_ImageXor(mlib_image *dst,
37 * dst pointer to destination image
42 * The src1, src2, and dst must be the same type and the same dsize.
47 * Xor two images for each band: dst = src1 ^ src2
78 mlib_status __mlib_ImageXor(mlib_image *dst, argument
84 MLIB_IMAGE_CHECK(dst);
86 return mlib_v_ImageLogic(dst, src1, src2);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DByteLookupTable.java111 * Array <code>dst</code> is returned.
114 * @param dst the destination array. This array must be at least as
115 * long as <code>src</code>. If <code>dst</code> is
118 * @return the array <code>dst</code>, an <code>int</code> array of
121 * longer than <code>dst</code> or if for any element
127 public int[] lookupPixel(int[] src, int[] dst){ argument
128 if (dst == null) {
130 dst = new int[src.length];
142 dst[i] = (int) data[0][s];
153 dst[
178 lookupPixel(byte[] src, byte[] dst) argument
[all...]
H A DShortLookupTable.java105 * Array <code>dst</code> is returned.
108 * @param dst the destination array. This array must be at least as
109 * long as <code>src</code>. If <code>dst</code> is
112 * @return the array <code>dst</code>, an <code>int</code> array of
115 * longer than <code>dst</code> or if for any element
121 public int[] lookupPixel(int[] src, int[] dst){ argument
122 if (dst == null) {
124 dst = new int[src.length];
136 dst[i] = (int) data[0][s];
147 dst[
172 lookupPixel(short[] src, short[] dst) argument
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_zero/vm/
H A Dos_bsd_zero.hpp38 static void atomic_copy64(volatile void *src, volatile void *dst) { argument
44 : "b"(src), "b"(dst));
50 : "a"(src), "a"(dst));
52 *(jlong *) dst = *(jlong *) src;
/openjdk7/hotspot/src/os_cpu/linux_zero/vm/
H A Dos_linux_zero.hpp38 static void atomic_copy64(volatile void *src, volatile void *dst) { argument
44 : "b"(src), "b"(dst));
50 : "a"(src), "a"(dst));
52 *(jlong *) dst = *(jlong *) src;
/openjdk7/hotspot/src/share/vm/utilities/
H A Dcopy.cpp33 address dst = (address) to; local
34 uintptr_t bits = (uintptr_t) src | (uintptr_t) dst | (uintptr_t) size;
45 Copy::conjoint_jlongs_atomic((jlong*) src, (jlong*) dst, size / sizeof(jlong));
47 Copy::conjoint_jints_atomic((jint*) src, (jint*) dst, size / sizeof(jint));
49 Copy::conjoint_jshorts_atomic((jshort*) src, (jshort*) dst, size / sizeof(jshort));
52 Copy::conjoint_jbytes((void*) src, (void*) dst, size);
59 address dst = (address) to; local
68 //Copy::fill_to_jlongs_atomic((jlong*) dst, size / sizeof(jlong));
70 *(jlong*)(dst + off) = fill;
78 //Copy::fill_to_jints_atomic((jint*) dst, siz
[all...]
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/hotspot/test/compiler/6636138/
H A DTest1.java34 public static void init(int src[], int [] dst, int[] ref) { argument
38 dst[i] = 2; // yes, dst[i] needed(otherwise src[i] will be replaced with i)
55 int[] dst = new int[34];
58 init(src, dst, ref);
/openjdk7/jdk/test/java/awt/image/LookupOp/
H A DSingleArrayTest.java66 BufferedImage dst = new BufferedImage(2, 2, bi_type);
68 doTest(src.getData(), dst.getRaster());
70 doTest(src, dst);
75 public void doTest(Raster src, WritableRaster dst) { argument
78 dst = op.filter(src, dst);
84 public void doTest(BufferedImage src, BufferedImage dst) { argument
87 dst = op.filter(src, dst);
/openjdk7/jdk/test/java/util/zip/GZIP/
H A DGZIPInputStreamRead.java74 private static void test(byte[] src, byte[] dst, argument
78 try (ByteArrayInputStream bais = new ByteArrayInputStream(dst);
/openjdk7/jdk/test/javax/imageio/plugins/bmp/
H A DTopDownTest.java89 BufferedImage dst = ImageIO.read(fout);
91 verify(dst);
94 private static void verify(BufferedImage dst) { argument
95 int top_rgb = dst.getRGB(50, 25);
97 int bot_rgb = dst.getRGB(50, 75);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DArrayDecoder.java34 int decode(byte[] src, int off, int len, char[] dst); argument
H A DArrayEncoder.java34 int encode(char[] src, int off, int len, byte[] dst); argument
/openjdk7/jaxp/src/org/w3c/dom/
H A DUserDataHandler.java92 * @param dst Specifies the node newly created if any, or
99 Node dst);
95 handle(short operation, String key, Object data, Node src, Node dst) argument
/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...]
H A DInnerShadowEffect.java59 * @param dst The dstination image to paint effect result into. If this is null then a new image will be created
60 * @param w The width of the src image to apply effect to, this allow the src and dst buffers to be bigger than
62 * @param h The height of the src image to apply effect to, this allow the src and dst buffers to be bigger than
66 BufferedImage applyEffect(BufferedImage src, BufferedImage dst, int w, int h) { argument
71 if (dst != null && dst.getType() != BufferedImage.TYPE_INT_ARGB){
112 if (dst == null) dst = new BufferedImage(w, h,
114 WritableRaster shadowRaster = dst.getRaster();
129 return dst;
[all...]
/openjdk7/jdk/src/share/classes/java/nio/file/attribute/
H A DUserDefinedFileAttributeView.java146 * @param dst
165 int read(String name, ByteBuffer dst) throws IOException; argument
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkCodeBuffer.hpp89 void *dst = masm()->pc(); local
91 memcpy(dst, src, size);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/staxex/
H A DStreamingDataHandler.java108 * OutputStream o = new FileOutputStream(dst);
135 public abstract void moveTo(File dst) throws IOException; argument
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_ImageConvCopyEdge_Fp.c28 * mlib_ImageConvCopyEdge_Fp - Copy src edges to dst edges
32 * mlib_status mlib_ImageConvCopyEdge_Fp(mlib_image *dst,
41 * dst Pointer to an dst image.
56 * The src and the dst must be the same type, same width, same height and have same number
58 * overwritten. If both src and dst have just one channel,
62 * Copy src edges to dst edges.
65 * If src and dst have just one channel,
75 type *pdst = (type *) mlib_ImageGetData(dst); \
77 mlib_s32 dst_stride = mlib_ImageGetStride(dst) / sizeo
117 mlib_ImageConvCopyEdge_Fp(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...]

Completed in 107 milliseconds

1234567891011>>