Home
last modified time | relevance | path

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

123456

/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.java77 public void write(char cbuf[], int off, int len) throws IOException { in write()
90 public void write(String str, int off, int len) throws IOException { in write()
DOutputStreamWriter.java206 public void write(char cbuf[], int off, int len) throws IOException { in write()
219 public void write(String str, int off, int len) throws IOException { in write()
DBufferedInputStream.java278 private int read1(byte[] b, int off, int len) throws IOException { in read1()
293 System.arraycopy(getBufIfOpen(), pos, b, off, cnt); in read1() local
335 public synchronized int read(byte b[], int off, int len) in read()
/libcore/ojluni/src/main/java/java/util/zip/
DInflater.java81 private int off, len; field in Inflater
125 public void setInput(byte[] b, int off, int len) { in setInput()
161 public void setDictionary(byte[] b, int off, int len) { in setDictionary()
170 setDictionary(zsRef.address(), b, off, len); in setDictionary() local
250 public int inflate(byte[] b, int off, int len) in inflate()
412 private native static void setDictionary(long addr, byte[] b, int off, in setDictionary()
414 private native int inflateBytes(long addr, byte[] b, int off, int len) in inflateBytes()
DDeflater.java80 private int off, len; field in Deflater
201 public void setInput(byte[] b, int off, int len) { in setInput()
237 public void setDictionary(byte[] b, int off, int len) { in setDictionary()
246 setDictionary(zsRef.address(), b, off, len); in setDictionary() local
367 public int deflate(byte[] b, int off, int len) { in deflate()
434 public int deflate(byte[] b, int off, int len, int flush) { in deflate()
573 private native static void setDictionary(long addr, byte[] b, int off, int len); in setDictionary()
574 private native int deflateBytes(long addr, byte[] b, int off, int len, in deflateBytes()
DCRC32.java69 public void update(byte[] b, int off, int len) { in update()
135 private native static int updateBytes(int crc, byte[] b, int off, int len); in updateBytes()
138 int off, int len); in updateByteBuffer()
DAdler32.java71 public void update(byte[] b, int off, int len) { in update()
138 private native static int updateBytes(int adler, byte[] b, int off, in updateBytes()
141 int off, int len); in updateByteBuffer()
DZipUtils.java129 public static final int get16(byte b[], int off) { in get16()
137 public static final long get32(byte b[], int off) { in get32()
145 public static final long get64(byte b[], int off) { in get64()
DZipOutputStream.java317 public synchronized void write(byte[] b, int off, int len) in write()
369 long off = written; in finish() local
597 private void writeEND(long off, long len) throws IOException { in writeEND()
659 int off = 0; in getExtraLen() local
683 int off = 0; in writeExtra() local
752 private void writeBytes(byte[] b, int off, int len) throws IOException { in writeBytes()
/libcore/ojluni/src/main/java/java/net/
DSocketOutputStream.java86 private native void socketWrite0(FileDescriptor fd, byte[] b, int off, in socketWrite0()
97 private void socketWrite(byte b[], int off, int len) throws IOException { in socketWrite()
152 public void write(byte b[], int off, int len) throws IOException { in write()
DSocketInputStream.java93 byte b[], int off, int len, in socketRead0()
111 byte b[], int off, int len, in socketRead()
138 public int read(byte b[], int off, int length) throws IOException { in read()
142 int read(byte b[], int off, int length, int timeout) throws IOException { in read()
/libcore/ojluni/src/main/java/java/lang/
DStringCoding.java155 char[] decode(byte[] ba, int off, int len) { in decode()
184 static char[] decode(String charsetName, byte[] ba, int off, int len) in decode()
204 static char[] decode(Charset cs, byte[] ba, int off, int len) { in decode()
258 static char[] decode(byte[] ba, int off, int len) { in decode()
306 byte[] encode(char[] ca, int off, int len) { in encode()
336 static byte[] encode(String charsetName, char[] ca, int off, int len) in encode()
356 static byte[] encode(Charset cs, char[] ca, int off, int len) { in encode()
393 static byte[] encode(char[] ca, int off, int len) { in encode()
/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/ojluni/src/main/java/java/nio/
DHeapFloatBuffer.java53 HeapFloatBuffer(float[] buf, int off, int len) { // package-private in HeapFloatBuffer()
57 HeapFloatBuffer(float[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapFloatBuffer()
64 int off) { in HeapFloatBuffer()
70 int off, boolean isReadOnly) { in HeapFloatBuffer()
DHeapIntBuffer.java53 HeapIntBuffer(int[] buf, int off, int len) { // package-private in HeapIntBuffer()
57 HeapIntBuffer(int[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapIntBuffer()
64 int off) { in HeapIntBuffer()
70 int off, boolean isReadOnly) { in HeapIntBuffer()
DHeapLongBuffer.java54 HeapLongBuffer(long[] buf, int off, int len) { // package-private in HeapLongBuffer()
58 HeapLongBuffer(long[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapLongBuffer()
65 int off) { in HeapLongBuffer()
71 int off, boolean isReadOnly) { in HeapLongBuffer()
DHeapDoubleBuffer.java48 HeapDoubleBuffer(double[] buf, int off, int len) { // package-private in HeapDoubleBuffer()
54 int off) { in HeapDoubleBuffer()
63 HeapDoubleBuffer(double[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapDoubleBuffer()
70 int off, boolean isReadOnly) { in HeapDoubleBuffer()
DHeapShortBuffer.java53 HeapShortBuffer(short[] buf, int off, int len) { // package-private in HeapShortBuffer()
57 HeapShortBuffer(short[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapShortBuffer()
64 int off) { in HeapShortBuffer()
70 int off, boolean isReadOnly) { in HeapShortBuffer()
DHeapCharBuffer.java53 HeapCharBuffer(char[] buf, int off, int len) { // package-private in HeapCharBuffer()
57 HeapCharBuffer(char[] buf, int off, int len, boolean isReadOnly) { // package-private in HeapCharBuffer()
64 int off) { in HeapCharBuffer()
70 int off, boolean isReadOnly) { in HeapCharBuffer()
/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()
/libcore/ojluni/src/main/native/
DAdler32.c52 jarray b, jint off, jint len) in Java_java_util_zip_Adler32_updateBytes()
64 jlong address, jint off, jint len) in Java_java_util_zip_Adler32_updateByteBuffer()
Dio_util.c68 outOfBounds(JNIEnv *env, jint off, jint len, jbyteArray array) { in outOfBounds()
78 jint off, jint len, jfieldID fid) in readBytes()
154 jint off, jint len, jboolean append, jfieldID fid) in writeBytes()
/libcore/ojluni/src/main/java/sun/nio/cs/
DArrayEncoder.java34 int encode(char[] src, int off, int len, byte[] dst); in encode()
DArrayDecoder.java34 int decode(byte[] src, int off, int len, char[] dst); in decode()

123456