Searched defs:src (Results 101 - 125 of 510) sorted by relevance

1234567891011>>

/openjdk7/jdk/test/sun/nio/cs/OLD/
H A DMS932_OLD.java80 public CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
81 return super.decodeLoop(src, dst);
/openjdk7/jdk/test/sun/nio/cs/
H A DX11CNS11643.java83 protected CoderResult encodeLoop(CharBuffer src, ByteBuffer dst) { argument
84 char[] sa = src.array();
85 int sp = src.arrayOffset() + src.position();
86 int sl = src.arrayOffset() + src.limit();
112 src.position(sp - src.arrayOffset());
139 protected CoderResult decodeLoop(ByteBuffer src, CharBuffer dst) { argument
140 byte[] sa = src
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DEffect.java47 * under the src image. BLENDED means the result of apply sffect contains a modified src image so just it should be
48 * painted. OVER means the result of apply effect should be painted over the src image.
62 * Apply the effect to the src image generating the result . The result image may or may not contain the source
65 * @param src The source image for applying the effect to
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, BufferedImag argument
[all...]
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DJPEGImageDecoder.java73 public JPEGImageDecoder(InputStreamImageSource src, InputStream is) { argument
74 super(src, is);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DAffineTransformOp.java197 * @param src The <CODE>BufferedImage</CODE> to transform.
202 * @throws IllegalArgumentException if <code>src</code> and
210 public final BufferedImage filter(BufferedImage src, BufferedImage dst) { argument
212 if (src == null) {
213 throw new NullPointerException("src image is null");
215 if (src == dst) {
216 throw new IllegalArgumentException("src image cannot be the "+
221 ColorModel srcCM = src.getColorModel();
226 dst = createCompatibleDestImage(src, null);
255 int sw = src
337 filter(Raster src, WritableRaster dst) argument
373 getBounds2D(BufferedImage src) argument
388 getBounds2D(Raster src) argument
435 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
488 createCompatibleDestRaster(Raster src) argument
[all...]
H A DConvolveOp.java146 * @param src the source <code>BufferedImage</code> to filter
148 * filtered <code>src</code>
150 * @throws NullPointerException if <code>src</code> is <code>null</code>
151 * @throws IllegalArgumentException if <code>src</code> equals
153 * @throws ImagingOpException if <code>src</code> cannot be filtered
155 public final BufferedImage filter (BufferedImage src, BufferedImage dst) { argument
156 if (src == null) {
157 throw new NullPointerException("src image is null");
159 if (src == dst) {
160 throw new IllegalArgumentException("src imag
234 filter(Raster src, WritableRaster dst) argument
262 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
304 createCompatibleDestRaster(Raster src) argument
313 getBounds2D(BufferedImage src) argument
322 getBounds2D(Raster src) argument
[all...]
H A DLookupOp.java116 * @param src the <code>BufferedImage</code> to be filtered
125 public final BufferedImage filter(BufferedImage src, BufferedImage dst) { argument
126 ColorModel srcCM = src.getColorModel();
143 " src image: "+src);
149 int width = src.getWidth();
150 int height = src.getHeight();
153 dst = createCompatibleDestImage(src, null);
175 dst = createCompatibleDestImage(src, null);
182 if (ImagingLib.filter(this, src, ds
253 filter(Raster src, WritableRaster dst) argument
335 getBounds2D(BufferedImage src) argument
346 getBounds2D(Raster src) argument
360 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
440 createCompatibleDestRaster(Raster src) 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/io/
H A DPipedInputStream.java98 * stream <code>src</code>. Data bytes written
99 * to <code>src</code> will then be available
102 * @param src the stream to connect to.
105 public PipedInputStream(PipedOutputStream src) throws IOException { argument
106 this(src, DEFAULT_PIPE_SIZE);
112 * <code>src</code> and uses the specified pipe size for
114 * Data bytes written to <code>src</code> will then
117 * @param src the stream to connect to.
123 public PipedInputStream(PipedOutputStream src, int pipeSize) argument
126 connect(src);
188 connect(PipedOutputStream src) argument
[all...]
H A DPipedReader.java75 * <code>src</code>. Data written to <code>src</code>
78 * @param src the stream to connect to.
81 public PipedReader(PipedWriter src) throws IOException { argument
82 this(src, DEFAULT_PIPE_SIZE);
87 * to the piped writer <code>src</code> and uses the specified
88 * pipe size for the pipe's buffer. Data written to <code>src</code>
91 * @param src the stream to connect to.
97 public PipedReader(PipedWriter src, int pipeSize) throws IOException { argument
99 connect(src);
161 connect(PipedWriter src) argument
[all...]
/openjdk7/jdk/src/share/classes/java/net/
H A DInet4Address.java366 * @param src a byte array representing an IPv4 numeric address
372 static String numericToTextFormat(byte[] src) argument
374 return (src[0] & 0xff) + "." + (src[1] & 0xff) + "." + (src[2] & 0xff) + "." + (src[3] & 0xff);
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousFileChannel.java718 * @param src
733 public abstract <A> void write(ByteBuffer src, argument
756 * @param src
769 public abstract Future<Integer> write(ByteBuffer src, long position); argument
/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DOpenMBeanInfoSupport.java191 attributeArray(OpenMBeanAttributeInfo[] src) { argument
192 if (src == null)
194 MBeanAttributeInfo[] dst = new MBeanAttributeInfo[src.length];
195 System.arraycopy(src, 0, dst, 0, src.length);
201 constructorArray(OpenMBeanConstructorInfo[] src) { argument
202 if (src == null)
204 MBeanConstructorInfo[] dst = new MBeanConstructorInfo[src.length];
205 System.arraycopy(src, 0, dst, 0, src
211 operationArray(OpenMBeanOperationInfo[] src) argument
[all...]
H A DOpenMBeanOperationInfoSupport.java194 arrayCopyCast(OpenMBeanParameterInfo[] src) { argument
195 if (src == null)
198 MBeanParameterInfo[] dst = new MBeanParameterInfo[src.length];
199 System.arraycopy(src, 0, dst, 0, src.length);
208 arrayCopyCast(MBeanParameterInfo[] src) { argument
209 if (src == null)
212 OpenMBeanParameterInfo[] dst = new OpenMBeanParameterInfo[src.length];
213 System.arraycopy(src, 0, dst, 0, src
[all...]
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Datomic_bsd_x86.inline.hpp162 inline jlong Atomic::load(volatile jlong* src) { return *src; } argument
190 void _Atomic_move_long(volatile jlong* src, volatile jlong* dst);
205 inline jlong Atomic::load(volatile jlong* src) { argument
207 _Atomic_move_long(src, &dest);
/openjdk7/hotspot/src/os_cpu/linux_sparc/vm/
H A Datomic_linux_sparc.inline.hpp57 inline jlong Atomic::load(volatile jlong* src) { return *src; } argument
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Datomic_linux_x86.inline.hpp162 inline jlong Atomic::load(volatile jlong* src) { return *src; } argument
190 void _Atomic_move_long(volatile jlong* src, volatile jlong* dst);
205 inline jlong Atomic::load(volatile jlong* src) { argument
207 _Atomic_move_long(src, &dest);
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Datomic_solaris_sparc.inline.hpp60 inline jlong Atomic::load(volatile jlong* src) { return *src; } argument
64 extern "C" void _Atomic_move_long_v8(volatile jlong* src, volatile jlong* dst);
65 extern "C" void _Atomic_move_long_v9(volatile jlong* src, volatile jlong* dst);
67 inline void Atomic_move_long(volatile jlong* src, volatile jlong* dst) { argument
70 _Atomic_move_long_v9(src, dst);
74 _Atomic_move_long_v9(src, dst);
76 _Atomic_move_long_v8(src, dst);
81 inline jlong Atomic::load(volatile jlong* src) { argument
83 Atomic_move_long(src,
[all...]
/openjdk7/hotspot/test/compiler/7047069/
H A DTest7047069.java73 public static void subdivide(float src[], int srcoff, argument
77 float x1 = src[srcoff + 0];
78 float y1 = src[srcoff + 1];
79 float ctrlx = src[srcoff + 2];
80 float ctrly = src[srcoff + 3];
81 float x2 = src[srcoff + 4];
82 float y2 = src[srcoff + 5];
/openjdk7/jaxp/src/org/w3c/dom/html/
H A DHTMLScriptElement.java82 * URI designating an external script. See the src attribute definition
86 public void setSrc(String src); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSingleByteEncoder.java75 private CoderResult encodeArrayLoop(CharBuffer src, ByteBuffer dst) { argument
76 char[] sa = src.array();
77 int sp = src.arrayOffset() + src.position();
78 int sl = src.arrayOffset() + src.limit();
111 src.position(sp - src.arrayOffset());
116 private CoderResult encodeBufferLoop(CharBuffer src, ByteBuffer dst) { argument
117 int mark = src
148 encodeLoop(CharBuffer src, ByteBuffer dst) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/
H A DIllegalAnnotationException.java53 public IllegalAnnotationException(String message, Locatable src) { argument
55 pos = build(src);
58 public IllegalAnnotationException(String message, Annotation src) { argument
59 this(message,cast(src));
75 public IllegalAnnotationException(String message, Throwable cause, Locatable src) { argument
77 pos = build(src);
102 private List<Location> convert(Locatable src) { argument
103 if(src==null) return null;
106 for( ; src!=null; src
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/source/
H A DSourceUtils.java61 public SourceUtils(Source src) { argument
62 if(src instanceof StreamSource){
64 }else if(src instanceof DOMSource){
66 }else if(src instanceof SAXSource){
86 * @param src
89 public QName sniff(Source src) { argument
90 return sniff(src, new RootElementSniffer());
93 public QName sniff(Source src, RootElementSniffer sniffer){ argument
98 DOMSource domSource = (DOMSource)src;
106 SAXSource saxSrc = (SAXSource)src;
127 serializeSource(Source src, XMLStreamWriter writer) argument
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageChannelInsert.c36 * mlib_image *src,
41 * src Pointer to source image.
51 * The src and dst must have the same width, height and data type.
52 * The src and dst can have 1, 2, 3 or 4 channels.
53 * The src and dst can be either MLIB_BYTE, MLIB_SHORT, MLIB_INT,
69 mlib_v_ImageChannelInsert_U8(mlib_u8 *src, mlib_s32 slb,
76 mlib_v_ImageChannelInsert_D64(mlib_d64 *src, mlib_s32 slb,
83 mlib_v_ImageChannelInsert_S16(mlib_s16 *src, mlib_s32 slb,
90 mlib_v_ImageChannelInsert_S32(mlib_s32 *src, mlib_s32 slb,
97 mlib_v_ImageChannelInsert_U8_12_A8D1X8(mlib_u8 *src,
290 mlib_v_ImageChannelInsert(mlib_image *dst, mlib_image *src, mlib_s32 cmask) argument
[all...]
H A Dmlib_v_ImageConvCopyEdge.c30 * mlib_ImageConvCopyEdge - Copy src edges to dst edges
35 * const mlib_image *src,
44 * src Pointer to an src image.
58 * The src and the dst must be the same type, same width, same height and have same number
60 * overwritten. If both src and dst have just one channel,
64 * Copy src edges to dst edges.
67 * If src and dst have just one channel,
77 const mlib_image *src,
86 const mlib_image *src,
208 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
321 mlib_ImageConvCopyEdge_U8(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, mlib_s32 nchan) argument
399 mlib_ImageConvCopyEdge_U8_3(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
519 mlib_ImageConvCopyEdge_S16(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, mlib_s32 nchan) argument
594 mlib_ImageConvCopyEdge_S16_3(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
714 mlib_ImageConvCopyEdge_S32(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, mlib_s32 nchan) argument
787 mlib_ImageConvCopyEdge_S32_3(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
907 mlib_ImageConvCopyEdge_S32_4(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_v_ImageCopy_f.c127 mlib_d64 *sp; /* 8-byte aligned start point in src */
133 mlib_u8 src, mask; local
140 src = da[0];
141 da[0] = (src & (~mask)) | (sa[0] & mask);
146 src = da[0];
147 da[0] = (src & (~mask)) | (sa[0] & mask);
191 src = dend[1];
192 dend[1] = (src & (~mask)) | (sa[b_size] & mask);
208 mlib_d64 *sp; /* 8-byte aligned start point in src */

Completed in 148 milliseconds

1234567891011>>