Searched defs:off (Results 201 - 225 of 457) sorted by relevance

1234567891011>>

/openjdk7/hotspot/src/share/vm/code/
H A DvtableStubs.hpp87 uintptr_t off = (uintptr_t)( _chunk + sizeof(VtableStub) ) % pd_code_alignment(); local
88 if (off != 0) _chunk += pd_code_alignment() - off;
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAlawCodec.java358 public int read(byte[] b, int off, int len) throws IOException { argument
378 int currentPos = off;
421 if( currentPos==off && readCount<0 ) { // EOF or error
425 return (currentPos - off); /* Number of bytes written to new buffer */
431 int readOffset = off + len/2;
434 for (i = off; i < (off + (readCount*2)); i+=2) {
444 return (i - off);
H A DAudioFloatInputStream.java77 public int read(float[] b, int off, int len) throws IOException { argument
80 if (off < 0 || len < 0 || len > b.length - off)
89 b, off, len);
174 public int read(float[] b, int off, int len) throws IOException { argument
181 converter.toFloatArray(buffer, b, off, ret / framesize_pc);
256 public abstract int read(float[] b, int off, int len) throws IOException; argument
H A DRIFFReader.java154 public final void readFully(byte b[], int off, int len) throws IOException { argument
158 int s = read(b, off, len);
163 off += s;
H A DSoftJitterCorrector.java248 public int read(byte[] b, int off, int len) { argument
252 int offlen = off + len;
253 while (off < offlen) {
259 while (off < offlen && bbuffer_pos < bbuffer_len)
260 b[off++] = bbuffer[bbuffer_pos++];
H A DSunFileWriter.java197 public int read(byte b[], int off, int len) throws IOException { argument
198 return in.read(b, off, len);
H A DToolkit.java49 static void getUnsigned8(byte[] b, int off, int len) { argument
50 for (int i = off; i < (off+len); i++) {
60 static void getByteSwapped(byte[] b, int off, int len) { argument
63 for (int i = off; i < (off+len); i+=2) {
H A DUlawCodec.java342 public int read(byte[] b, int off, int len) throws IOException { argument
357 int currentPos = off;
395 if( currentPos==off && readCount<0 ) { // EOF or error on read
398 return (currentPos - off); /* Number of bytes written to new buffer */
402 int readOffset = off + len/2;
408 for (i = off; i < (off + (readCount*2)); i+=2) {
413 return (i - off);
/openjdk7/jdk/src/share/classes/java/awt/
H A DFontMetrics.java372 * @param off the start offset of the characters in the array
378 * @throws IndexOutOfBoundsException if the <code>off</code>
386 public int charsWidth(char data[], int off, int len) { argument
387 return stringWidth(new String(data, off, len));
399 * @param off the start offset of the bytes in the array
406 * @throws IndexOutOfBoundsException if the <code>off</code>
412 public int bytesWidth(byte data[], int off, int len) { argument
413 return stringWidth(new String(data, 0, off, len));
H A DGradientPaintContext.java235 int off = irast.getDataOffset(0);
240 cycleFillRaster(pixels, off, adjust, w, h, rowrel, dx, dy);
242 clipFillRaster(pixels, off, adjust, w, h, rowrel, dx, dy);
250 void cycleFillRaster(int[] pixels, int off, int adjust, int w, int h, argument
259 pixels[off++] = interp[icolrel >>> 23];
263 off += adjust;
268 void clipFillRaster(int[] pixels, int off, int adjust, int w, int h, argument
276 pixels[off++] = rgb;
281 pixels[off++] = interp[(int) (colrel * 256)];
287 pixels[off
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Ddecoder_machO.cpp59 uint32_t off = symt->symoff; /* symbol table offset (within this mach file) */ local
67 void * symtab_addr = (void*) ((uintptr_t) mach_base + off);
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/
H A DLogCleanupReader.java165 public int read(char[] b, int off, int len) throws java.io.IOException { argument
176 int n = Math.min(length - index, Math.min(b.length - off, len));
177 // System.out.printf("%d %d %d %d %d\n", index, length, off, len, n);
178 System.arraycopy(line, index, b, off, n);
/openjdk7/jdk/make/tools/src/build/tools/charsetmapping/
H A DJIS0213.java125 int off,
131 for (int i = off; i < size; i++) {
132 writeShort(out, array[off+i]);
150 int off = 0;
153 writeShort(out, off);
154 off += 256;
122 writeShortArray(OutputStream out, int type, int[] array, int off, int size) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/
H A DXmlReader.java441 public int read(char buf [], int off, int len) throws IOException { argument
446 val = in.read(buf, off, len);
618 int off = start;
622 if ((buffer[off] & 0x0E0) == 0x0C0) {
623 c = (buffer[off++] & 0x1f) << 6;
624 c += buffer[off++] & 0x3f;
629 } else if ((buffer[off] & 0x0F0) == 0x0E0) {
630 c = (buffer[off++] & 0x0f) << 12;
631 c += (buffer[off++] & 0x3f) << 6;
632 c += buffer[off
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/packaging/mime/util/
H A DUUDecoderStream.java91 public int read(byte[] buf, int off, int len) throws IOException { argument
99 buf[off+i] = (byte)c;
139 * UUencoded streams start off with the line:
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DByteOutputStream.java105 public void write(byte[] b, int off, int len) { argument
107 System.arraycopy(b, off, buf, count, len);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/
H A DDataHead.java196 public int read(byte b[], int off, int sz) throws IOException { argument
200 System.arraycopy(buf,offset,b,off,sz);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DAnnotationWriter.java314 * @param off index of the first annotation to be written.
319 final int off,
322 int size = 1 + 2 * (panns.length - off);
323 for (int i = off; i < panns.length; ++i) {
326 out.putInt(size).putByte(panns.length - off);
327 for (int i = off; i < panns.length; ++i) {
317 put( final AnnotationWriter[] panns, final int off, final ByteVector out) argument
H A DAttribute.java130 * @param off index of the first byte of the attribute's content in {@link
151 final int off,
159 System.arraycopy(cr.b, off, attr.value, 0, len);
149 read( final ClassReader cr, final int off, final int len, final char[] buf, final int codeOff, final Label[] labels) argument
H A DByteVector.java294 * @param off index of the fist byte of b that must be copied.
298 public ByteVector putByteArray(final byte[] b, final int off, final int len) argument
304 System.arraycopy(b, off, data, length, len);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DByteArrayBuffer.java122 public final void write(byte b[], int off, int len) { argument
125 System.arraycopy(b, off, buf, count, len);
143 int off = 0;
146 out.write(buf, off, chunk);
148 off += chunk;
H A DReadAllStream.java87 public int read(byte b[], int off, int sz) throws IOException { argument
88 int len = memStream.read(b, off, sz);
90 len = fileStream.read(b, off, sz);
128 public int read(byte b[], int off, int sz) throws IOException { argument
129 return (fin != null) ? fin.read(b, off, sz) : -1;
197 public int read(byte b[], int off, int sz) throws IOException { argument
201 sz = Math.min(sz, head.len-(curOff-head.off));
202 System.arraycopy(head.buf,curOff,b,off,sz);
212 if (curOff == head.off+head.len) {
217 curOff = head.off;
225 final int off; field in class:ReadAllStream.MemoryStream.Chunk
228 Chunk(byte[] buf, int off, int len) argument
234 createNext(byte[] buf, int off, int len) argument
[all...]
/openjdk7/jdk/src/solaris/instrument/
H A DFileSystemSupport_md.c72 static char* normalizePath(const char* pathname, int len, int off) { argument
85 if (off > 0) {
86 memcpy(sb, pathname, off);
87 sbLen = off;
91 for (i = off; i < n; i++) {
/openjdk7/jdk/src/solaris/native/sun/awt/medialib/
H A Dmlib_v_ImageLookUpU8S32Func.c148 mlib_s32 off, size = xsize; local
150 off = (mlib_s32) ((4 - ((mlib_addr) sp & 3)) & 3);
152 off = (off < size) ? off : size;
154 for (i = 0; i < off; i++) {
189 mlib_s32 off, size = xsize * 2; local
193 off = (mlib_s32) ((4 - ((mlib_addr) sp & 3)) & 3);
195 off = (off < siz
245 mlib_s32 off, size = xsize * 4; local
403 mlib_s32 off, size = xsize * 3; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_GlyphList.c96 mlib_s32 pix, mask0, mask1, mask_h, mask_l, off; local
122 off = (mlib_s32)src & 7;
123 ss = *(mlib_d64*)(src - off);
132 ss = *(mlib_d64*)(src - off);
138 STORE_D64(8, dst, (mask0 << off) | (mask1 >> (8 - off)));
163 mlib_s32 pix, mask0, mask1, off; local
189 off = (mlib_s32)src & 3;
190 ss = *(mlib_f32*)(src - off);
197 ss = *(mlib_f32*)(src - off);
224 mlib_s32 pix, mask0, mask1, mask, off; local
289 mlib_s32 pix, mask0, mask1, mask, off; local
[all...]

Completed in 63 milliseconds

1234567891011>>