| /libcore/luni/src/main/java/java/nio/ |
| D | HeapByteBuffer.java | 62 public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get() 69 final void get(char[] dst, int dstOffset, int charCount) { in get() 75 final void get(double[] dst, int dstOffset, int doubleCount) { in get() 81 final void get(float[] dst, int dstOffset, int floatCount) { in get() 87 final void get(int[] dst, int dstOffset, int intCount) { in get() 93 final void get(long[] dst, int dstOffset, int longCount) { in get() 99 final void get(short[] dst, int dstOffset, int shortCount) { in get()
|
| D | DirectByteBuffer.java | 40 public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get() 47 final void get(char[] dst, int dstOffset, int charCount) { in get() 53 final void get(double[] dst, int dstOffset, int doubleCount) { in get() 59 final void get(float[] dst, int dstOffset, int floatCount) { in get() 65 final void get(int[] dst, int dstOffset, int intCount) { in get() 71 final void get(long[] dst, int dstOffset, int longCount) { in get() 77 final void get(short[] dst, int dstOffset, int shortCount) { in get()
|
| D | MemoryBlock.java | 184 public final void peekByteArray(int offset, byte[] dst, int dstOffset, int byteCount) { in peekByteArray() 188 …public final void peekCharArray(int offset, char[] dst, int dstOffset, int charCount, boolean swap… in peekCharArray() 192 …public final void peekDoubleArray(int offset, double[] dst, int dstOffset, int doubleCount, boolea… in peekDoubleArray() 196 …public final void peekFloatArray(int offset, float[] dst, int dstOffset, int floatCount, boolean s… in peekFloatArray() 200 … public final void peekIntArray(int offset, int[] dst, int dstOffset, int intCount, boolean swap) { in peekIntArray() 204 …public final void peekLongArray(int offset, long[] dst, int dstOffset, int longCount, boolean swap… in peekLongArray() 208 …public final void peekShortArray(int offset, short[] dst, int dstOffset, int shortCount, boolean s… in peekShortArray()
|
| D | ShortArrayBuffer.java | 67 public final ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get()
|
| D | IntArrayBuffer.java | 67 public final IntBuffer get(int[] dst, int dstOffset, int intCount) { in get()
|
| D | DoubleArrayBuffer.java | 67 public final DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get()
|
| D | LongArrayBuffer.java | 67 public final LongBuffer get(long[] dst, int dstOffset, int longCount) { in get()
|
| D | FloatArrayBuffer.java | 67 public final FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get()
|
| D | ShortToByteBufferAdapter.java | 100 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get()
|
| D | FloatToByteBufferAdapter.java | 100 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get()
|
| D | DoubleToByteBufferAdapter.java | 101 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get()
|
| D | IntToByteBufferAdapter.java | 101 public IntBuffer get(int[] dst, int dstOffset, int intCount) { in get()
|
| D | LongToByteBufferAdapter.java | 101 public LongBuffer get(long[] dst, int dstOffset, int longCount) { in get()
|
| D | CharSequenceAdapter.java | 79 public final CharBuffer get(char[] dst, int dstOffset, int charCount) { in get()
|
| D | CharToByteBufferAdapter.java | 101 public CharBuffer get(char[] dst, int dstOffset, int charCount) { in get()
|
| D | ByteBuffer.java | 404 public ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get() 780 int dstOffset = dst.position(); in put() local
|
| D | ShortBuffer.java | 259 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get()
|
| D | IntBuffer.java | 256 public IntBuffer get(int[] dst, int dstOffset, int intCount) { in get()
|
| D | DoubleBuffer.java | 269 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get()
|
| /libcore/luni/src/main/java/libcore/io/ |
| D | BufferIterator.java | 40 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()
|
| D | Memory.java | 35 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() 158 public static native void peekByteArray(int address, byte[] dst, int dstOffset, int byteCount); in peekByteArray() 159 …public static native void peekCharArray(int address, char[] dst, int dstOffset, int charCount, boo… in peekCharArray() 160 …public static native void peekDoubleArray(int address, double[] dst, int dstOffset, int doubleCoun… in peekDoubleArray() 161 …public static native void peekFloatArray(int address, float[] dst, int dstOffset, int floatCount, … in peekFloatArray() 162 …public static native void peekIntArray(int address, int[] dst, int dstOffset, int intCount, boolea… in peekIntArray() 163 …public static native void peekLongArray(int address, long[] dst, int dstOffset, int longCount, boo… in peekLongArray() 164 …public static native void peekShortArray(int address, short[] dst, int dstOffset, int shortCount, … in peekShortArray()
|
| D | NioBufferIterator.java | 48 public void readByteArray(byte[] dst, int dstOffset, int byteCount) { in readByteArray() 65 public void readIntArray(int[] dst, int dstOffset, int intCount) { in readIntArray()
|
| D | HeapBufferIterator.java | 50 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/native/ |
| D | libcore_io_Memory.cpp | 80 static void Memory_memmove(JNIEnv* env, jclass, jobject dstObject, jint dstOffset, jobject srcObjec… in Memory_memmove() 96 …_peekByteArray(JNIEnv* env, jclass, jint srcAddress, jbyteArray dst, jint dstOffset, jint byteCoun… in Memory_peekByteArray() 121 …_peekCharArray(JNIEnv* env, jclass, jint srcAddress, jcharArray dst, jint dstOffset, jint count, j… in Memory_peekCharArray() 125 …kDoubleArray(JNIEnv* env, jclass, jint srcAddress, jdoubleArray dst, jint dstOffset, jint count, j… in Memory_peekDoubleArray() 129 …eekFloatArray(JNIEnv* env, jclass, jint srcAddress, jfloatArray dst, jint dstOffset, jint count, j… in Memory_peekFloatArray() 133 static void Memory_peekIntArray(JNIEnv* env, jclass, jint srcAddress, jintArray dst, jint dstOffset… in Memory_peekIntArray() 137 …_peekLongArray(JNIEnv* env, jclass, jint srcAddress, jlongArray dst, jint dstOffset, jint count, j… in Memory_peekLongArray() 141 …eekShortArray(JNIEnv* env, jclass, jint srcAddress, jshortArray dst, jint dstOffset, jint count, j… in Memory_peekShortArray() 293 static void Memory_unsafeBulkGet(JNIEnv* env, jclass, jobject dstObject, jint dstOffset, in Memory_unsafeBulkGet() 310 static void Memory_unsafeBulkPut(JNIEnv* env, jclass, jbyteArray dstArray, jint dstOffset, in Memory_unsafeBulkPut()
|
| /libcore/luni/src/main/java/java/util/ |
| D | GregorianCalendar.java | 514 int dstOffset = fields[YEAR] <= 0 ? 0 : getTimeZone().getOffset(AD, in fullFieldsCalc() local 589 int dstOffset = fields[DST_OFFSET]; in cachedFieldsCheckAndGet() local 614 int dstOffset = timeZone.inDaylightTime(new Date(time)) ? timeZone.getDSTSavings() : 0; in computeFields() local
|