Home
last modified time | relevance | path

Searched defs:dstOffset (Results 1 – 25 of 28) sorted by relevance

12

/libcore/luni/src/main/java/libcore/io/
DBufferIterator.java40 public abstract void readByteArray(byte[] dst, int dstOffset, int byteCount); in readByteArray()
56 public abstract void readIntArray(int[] dst, int dstOffset, int intCount); in readIntArray()
DMemory.java35 public static native void unsafeBulkGet(Object dst, int dstOffset, int byteCount, in unsafeBulkGet()
42 public static native void unsafeBulkPut(byte[] dst, int dstOffset, int byteCount, in unsafeBulkPut()
151 …public static native void memmove(Object dstObject, int dstOffset, Object srcObject, int srcOffset… in memmove()
182 public static native void peekByteArray(long address, byte[] dst, int dstOffset, int byteCount); in peekByteArray()
183 …public static native void peekCharArray(long address, char[] dst, int dstOffset, int charCount, bo… in peekCharArray()
184 …public static native void peekDoubleArray(long address, double[] dst, int dstOffset, int doubleCou… in peekDoubleArray()
185 …public static native void peekFloatArray(long address, float[] dst, int dstOffset, int floatCount,… in peekFloatArray()
186 …public static native void peekIntArray(long address, int[] dst, int dstOffset, int intCount, boole… in peekIntArray()
187 …public static native void peekLongArray(long address, long[] dst, int dstOffset, int longCount, bo… in peekLongArray()
188 …public static native void peekShortArray(long address, short[] dst, int dstOffset, int shortCount,… in peekShortArray()
DNioBufferIterator.java48 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray()
65 public void readIntArray(int[] dst, int dstOffset, int intCount) { in readIntArray()
DHeapBufferIterator.java50 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray()
67 public void readIntArray(int[] dst, int dstOffset, int intCount) { in readIntArray()
/libcore/luni/src/main/java/java/nio/
DMemoryBlock.java205 public final void peekByteArray(int offset, byte[] dst, int dstOffset, int byteCount) { in peekByteArray()
209 …public final void peekCharArray(int offset, char[] dst, int dstOffset, int charCount, boolean swap… in peekCharArray()
213 …public final void peekDoubleArray(int offset, double[] dst, int dstOffset, int doubleCount, boolea… in peekDoubleArray()
217 …public final void peekFloatArray(int offset, float[] dst, int dstOffset, int floatCount, boolean s… in peekFloatArray()
221 … public final void peekIntArray(int offset, int[] dst, int dstOffset, int intCount, boolean swap) { in peekIntArray()
225 …public final void peekLongArray(int offset, long[] dst, int dstOffset, int longCount, boolean swap… in peekLongArray()
229 …public final void peekShortArray(int offset, short[] dst, int dstOffset, int shortCount, boolean s… in peekShortArray()
DDirectByteBuffer.java111 @Override public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get()
119 final void get(char[] dst, int dstOffset, int charCount) { in get()
126 final void get(double[] dst, int dstOffset, int doubleCount) { in get()
133 final void get(float[] dst, int dstOffset, int floatCount) { in get()
140 final void get(int[] dst, int dstOffset, int intCount) { in get()
147 final void get(long[] dst, int dstOffset, int longCount) { in get()
154 final void get(short[] dst, int dstOffset, int shortCount) { in get()
DByteArrayBuffer.java107 @Override public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get()
114 final void get(char[] dst, int dstOffset, int charCount) { in get()
120 final void get(double[] dst, int dstOffset, int doubleCount) { in get()
126 final void get(float[] dst, int dstOffset, int floatCount) { in get()
132 final void get(int[] dst, int dstOffset, int intCount) { in get()
138 final void get(long[] dst, int dstOffset, int longCount) { in get()
144 final void get(short[] dst, int dstOffset, int shortCount) { in get()
DByteBufferAsShortBuffer.java99 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get()
DByteBufferAsIntBuffer.java100 public IntBuffer get(int[] dst, int dstOffset, int intCount) { in get()
DByteBufferAsFloatBuffer.java99 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get()
DByteBufferAsLongBuffer.java100 public LongBuffer get(long[] dst, int dstOffset, int longCount) { in get()
DByteBufferAsDoubleBuffer.java100 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get()
DLongArrayBuffer.java110 @Override public final LongBuffer get(long[] dst, int dstOffset, int longCount) { in get()
DFloatArrayBuffer.java111 @Override public final FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get()
DDoubleArrayBuffer.java110 @Override public final DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get()
DShortArrayBuffer.java110 @Override public final ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get()
DIntArrayBuffer.java110 @Override public final IntBuffer get(int[] dst, int dstOffset, int intCount) { in get()
DCharSequenceAdapter.java79 public final CharBuffer get(char[] dst, int dstOffset, int charCount) { in get()
DByteBufferAsCharBuffer.java100 public CharBuffer get(char[] dst, int dstOffset, int charCount) { in get()
DByteBuffer.java396 public ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get()
798 int dstOffset = dst.position(); in put() local
DDoubleBuffer.java267 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get()
DFloatBuffer.java268 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get()
DLongBuffer.java256 public LongBuffer get(long[] dst, int dstOffset, int longCount) { in get()
DShortBuffer.java257 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get()
/libcore/luni/src/main/native/
Dlibcore_io_Memory.cpp145 static void Memory_memmove(JNIEnv* env, jclass, jobject dstObject, jint dstOffset, jobject srcObjec… in Memory_memmove()
161 …peekByteArray(JNIEnv* env, jclass, jlong srcAddress, jbyteArray dst, jint dstOffset, jint byteCoun… in Memory_peekByteArray()
186 …peekCharArray(JNIEnv* env, jclass, jlong srcAddress, jcharArray dst, jint dstOffset, jint count, j… in Memory_peekCharArray()
190 …DoubleArray(JNIEnv* env, jclass, jlong srcAddress, jdoubleArray dst, jint dstOffset, jint count, j… in Memory_peekDoubleArray()
194 …ekFloatArray(JNIEnv* env, jclass, jlong srcAddress, jfloatArray dst, jint dstOffset, jint count, j… in Memory_peekFloatArray()
198 …y_peekIntArray(JNIEnv* env, jclass, jlong srcAddress, jintArray dst, jint dstOffset, jint count, j… in Memory_peekIntArray()
202 …peekLongArray(JNIEnv* env, jclass, jlong srcAddress, jlongArray dst, jint dstOffset, jint count, j… in Memory_peekLongArray()
206 …ekShortArray(JNIEnv* env, jclass, jlong srcAddress, jshortArray dst, jint dstOffset, jint count, j… in Memory_peekShortArray()
320 static void Memory_unsafeBulkGet(JNIEnv* env, jclass, jobject dstObject, jint dstOffset, in Memory_unsafeBulkGet()
337 static void Memory_unsafeBulkPut(JNIEnv* env, jclass, jbyteArray dstArray, jint dstOffset, in Memory_unsafeBulkPut()

12