Home
last modified time | relevance | path

Searched defs:off (Results 1 – 25 of 177) sorted by relevance

12345678

/libcore/ojluni/src/main/java/java/io/
DBits.java39 static boolean getBoolean(byte[] b, int off) { in getBoolean()
43 static char getChar(byte[] b, int off) { in getChar()
48 static short getShort(byte[] b, int off) { in getShort()
53 static int getInt(byte[] b, int off) { in getInt()
60 static float getFloat(byte[] b, int off) { in getFloat()
64 static long getLong(byte[] b, int off) { in getLong()
75 static double getDouble(byte[] b, int off) { in getDouble()
84 static void putBoolean(byte[] b, int off, boolean val) { in putBoolean()
88 static void putChar(byte[] b, int off, char val) { in putChar()
93 static void putShort(byte[] b, int off, short val) { in putShort()
[all …]
DFilterWriter.java82 public void write(char cbuf[], int off, int len) throws IOException { in write()
100 public void write(String str, int off, int len) throws IOException { in write()
DWriter.java119 public void write(char[] cbuf, int off, int len) throws IOException { in nullWriter()
131 public void write(String str, int off, int len) throws IOException { in nullWriter()
237 public abstract void write(char cbuf[], int off, int len) throws IOException; in write()
278 public void write(String str, int off, int len) throws IOException { in write()
DObjectInputStream.java917 public int read(byte[] buf, int off, int len) throws IOException { in read()
1087 public void readFully(byte[] buf, int off, int len) throws IOException { in readFully()
2322 int off = getFieldOffset(name, Boolean.TYPE); in get() local
2327 int off = getFieldOffset(name, Byte.TYPE); in get() local
2332 int off = getFieldOffset(name, Character.TYPE); in get() local
2337 int off = getFieldOffset(name, Short.TYPE); in get() local
2342 int off = getFieldOffset(name, Integer.TYPE); in get() local
2347 int off = getFieldOffset(name, Float.TYPE); in get() local
2352 int off = getFieldOffset(name, Long.TYPE); in get() local
2357 int off = getFieldOffset(name, Double.TYPE); in get() local
[all …]
DOutputStream.java87 public void write(byte b[], int off, int len) throws IOException { in nullOutputStream()
158 public void write(byte b[], int off, int len) throws IOException { in write()
/libcore/ojluni/src/main/java/java/nio/
DByteBufferAsDoubleBuffer.java56 int off, ByteOrder order) in ByteBufferAsDoubleBuffer()
177 public DoubleBuffer get(double[] dst, int off, int length) { in get()
181 bb.getUnchecked(ix(position), dst, off, length); in get() local
187 public DoubleBuffer get(int index, double[] dst, int off, int length) { in get()
190 bb.getUnchecked(ix(index), dst, off, length); in get() local
242 public DoubleBuffer put(double[] src, int off, int length) { in put()
247 bb.putUnchecked(ix(position), src, off, length); in put() local
253 public DoubleBuffer put(int index, double[] src, int off, int length) { in put()
261 private void putUnchecked(int index, double[] src, int off, int length) { in putUnchecked()
262 bb.putUnchecked(ix(index), src, off, length); in putUnchecked() local
DByteBufferAsLongBuffer.java56 int off, ByteOrder order) in ByteBufferAsLongBuffer()
177 public LongBuffer get(long[] dst, int off, int length) { in get()
181 bb.getUnchecked(ix(position), dst, off, length); in get() local
187 public LongBuffer get(int index, long[] dst, int off, int length) { in get()
190 bb.getUnchecked(ix(index), dst, off, length); in get() local
242 public LongBuffer put(long[] src, int off, int length) { in put()
247 bb.putUnchecked(ix(position), src, off, length); in put() local
253 public LongBuffer put(int index, long[] src, int off, int length) { in put()
261 private void putUnchecked(int index, long[] src, int off, int length) { in putUnchecked()
262 bb.putUnchecked(ix(index), src, off, length); in putUnchecked() local
DByteBufferAsIntBuffer.java56 int off, ByteOrder order) in ByteBufferAsIntBuffer()
177 public IntBuffer get(int[] dst, int off, int length) { in get()
181 bb.getUnchecked(ix(position), dst, off, length); in get() local
187 public IntBuffer get(int index, int[] dst, int off, int length) { in get()
190 bb.getUnchecked(ix(index), dst, off, length); in get() local
242 public IntBuffer put(int[] src, int off, int length) { in put()
247 bb.putUnchecked(ix(position), src, off, length); in put() local
253 public IntBuffer put(int index, int[] src, int off, int length) { in put()
261 private void putUnchecked(int index, int[] src, int off, int length) { in putUnchecked()
262 bb.putUnchecked(ix(index), src, off, length); in putUnchecked() local
DByteBufferAsShortBuffer.java56 int off, ByteOrder order) in ByteBufferAsShortBuffer()
177 public ShortBuffer get(short[] dst, int off, int length) { in get()
181 bb.getUnchecked(ix(position), dst, off, length); in get() local
187 public ShortBuffer get(int index, short[] dst, int off, int length) { in get()
190 bb.getUnchecked(ix(index), dst, off, length); in get() local
242 public ShortBuffer put(short[] src, int off, int length) { in put()
247 bb.putUnchecked(ix(position), src, off, length); in put() local
253 public ShortBuffer put(int index, short[] src, int off, int length) { in put()
261 private void putUnchecked(int index, short[] src, int off, int length) { in putUnchecked()
262 bb.putUnchecked(ix(index), src, off, length); in putUnchecked() local
DByteBufferAsFloatBuffer.java56 int off, ByteOrder order) in ByteBufferAsFloatBuffer()
177 public FloatBuffer get(float[] dst, int off, int length) { in get()
181 bb.getUnchecked(ix(position), dst, off, length); in get() local
187 public FloatBuffer get(int index, float[] dst, int off, int length) { in get()
190 bb.getUnchecked(ix(index), dst, off, length); in get() local
242 public FloatBuffer put(float[] src, int off, int length) { in put()
247 bb.putUnchecked(ix(position), src, off, length); in put() local
253 public FloatBuffer put(int index, float[] src, int off, int length) { in put()
261 private void putUnchecked(int index, float[] src, int off, int length) { in putUnchecked()
262 bb.putUnchecked(ix(index), src, off, length); in putUnchecked() local
DByteBufferAsCharBuffer.java56 int off, ByteOrder order) in ByteBufferAsCharBuffer()
177 public CharBuffer get(char[] dst, int off, int length) { in get()
181 bb.getUnchecked(ix(position), dst, off, length); in get() local
187 public CharBuffer get(int index, char[] dst, int off, int length) { in get()
190 bb.getUnchecked(ix(index), dst, off, length); in get() local
242 public CharBuffer put(char[] src, int off, int length) { in put()
247 bb.putUnchecked(ix(position), src, off, length); in put() local
253 public CharBuffer put(int index, char[] src, int off, int length) { in put()
261 private void putUnchecked(int index, char[] src, int off, int length) { in putUnchecked()
262 bb.putUnchecked(ix(index), src, off, length); in putUnchecked() local
/libcore/ojluni/src/main/java/java/util/zip/
DCRC32.java73 public void update(byte[] b, int off, int len) { in update()
150 private static int updateBytes(int crc, byte[] b, int off, int len) { in updateBytes()
156 private static native int updateBytes0(int crc, byte[] b, int off, int len); in updateBytes0()
158 private static void updateBytesCheck(byte[] b, int off, int len) { in updateBytesCheck()
176 int off, int len) { in updateByteBuffer()
183 int off, int len); in updateByteBuffer0()
DAdler32.java73 public void update(byte[] b, int off, int len) { in update()
149 private static native int updateBytes(int adler, byte[] b, int off, in updateBytes()
153 int off, int len); in updateByteBuffer()
DZipOutputStream.java334 public synchronized void write(byte[] b, int off, int len) in write()
379 long off = written; in finish() local
677 private void writeEND(long off, long len) throws IOException { in writeEND()
739 int off = 0; in getExtraLen() local
763 int off = 0; in writeExtra() local
832 private void writeBytes(byte[] b, int off, int len) throws IOException { in writeBytes()
DZipCoder.java61 String toString(byte[] ba, int off, int length) { in toString()
110 int checkedHash(byte[] a, int off, int len) throws Exception { in checkedHash()
202 String toString(byte[] ba, int off, int length) { in toString()
216 int checkedHash(byte[] a, int off, int len) throws Exception { in checkedHash()
/libcore/ojluni/annotations/hiddenapi/java/util/zip/
DInflater.java42 public void setInput(byte[] b, int off, int len) { in setInput()
50 public void setDictionary(byte[] b, int off, int len) { in setDictionary()
74 public int inflate(byte[] b, int off, int len) throws java.util.zip.DataFormatException { in inflate()
124 private static native void setDictionary(long addr, byte[] b, int off, int len); in setDictionary()
126 private native int inflateBytes(long addr, byte[] b, int off, int len) in inflateBytes()
164 private int off; field in Inflater
DDeflater.java45 public void setInput(byte[] b, int off, int len) { in setInput()
53 public void setDictionary(byte[] b, int off, int len) { in setDictionary()
81 public int deflate(byte[] b, int off, int len) { in deflate()
89 public int deflate(byte[] b, int off, int len, int flush) { in deflate()
131 private static native void setDictionary(long addr, byte[] b, int off, int len); in setDictionary()
133 private native int deflateBytes(long addr, byte[] b, int off, int len, int flush); in deflateBytes()
189 private int off; field in Deflater
DCRC32.java41 public void update(byte[] b, int off, int len) { in update()
64 private static native int updateBytes(int crc, byte[] b, int off, int len); in updateBytes()
66 private static native int updateByteBuffer(int adler, long addr, int off, int len); in updateByteBuffer()
DAdler32.java41 public void update(byte[] b, int off, int len) { in update()
64 private static native int updateBytes(int adler, byte[] b, int off, int len); in updateBytes()
66 private static native int updateByteBuffer(int adler, long addr, int off, int len); in updateByteBuffer()
/libcore/ojluni/src/main/java/java/net/
DSocketOutputStream.java90 private native void socketWrite0(FileDescriptor fd, byte[] b, int off, in socketWrite0()
101 private void socketWrite(byte b[], int off, int len) throws IOException { in socketWrite()
155 public void write(byte b[], int off, int len) throws IOException { in write()
DSocketInputStream.java97 byte b[], int off, int len, in socketRead0()
115 byte b[], int off, int len, in socketRead()
142 public int read(byte b[], int off, int length) throws IOException { in read()
146 int read(byte b[], int off, int length, int timeout) throws IOException { in read()
/libcore/ojluni/annotations/flagged_api/java/util/zip/
DInflater.annotated.java37 public void setInput(byte[] input, int off, int len) { throw new RuntimeException("Stub!"); } in setInput()
44 public void setDictionary(byte[] dictionary, int off, int len) { throw new RuntimeException("Stub!"… in setDictionary()
59 public int inflate(byte[] output, int off, int len) throws java.util.zip.DataFormatException { thro… in inflate()
DDeflater.annotated.java38 public void setInput(byte[] input, int off, int len) { throw new RuntimeException("Stub!"); } in setInput()
45 public void setDictionary(byte[] dictionary, int off, int len) { throw new RuntimeException("Stub!"… in setDictionary()
62 public int deflate(byte[] output, int off, int len) { throw new RuntimeException("Stub!"); } in deflate()
69 public int deflate(byte[] output, int off, int len, int flush) { throw new RuntimeException("Stub!"… in deflate()
/libcore/ojluni/src/main/java/java/util/jar/
DJarOutputStream.java137 private static int get16(byte[] b, int off) { in get16()
145 private static void set16(byte[] b, int off, int value) { in set16()
/libcore/luni/src/main/native/
DZipUtilities.cpp45 void NativeZipStream::setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, in setDictionary()
67 void NativeZipStream::setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) { in setInput()

12345678