Searched refs:memmove (Results 1 – 10 of 10) sorted by relevance
/libcore/ojluni/src/main/java/java/nio/ |
D | ByteBufferAsFloatBuffer.java | 141 Memory.memmove(this, ix(0), this, ix(pos), rem << 2); in compact()
|
D | ByteBufferAsIntBuffer.java | 141 Memory.memmove(this, ix(0), this, ix(pos), rem << 2); in compact()
|
D | ByteBufferAsLongBuffer.java | 141 Memory.memmove(this, ix(0), this, ix(pos), rem << 3); in compact()
|
D | ByteBufferAsShortBuffer.java | 140 Memory.memmove(this, ix(0), this, ix(pos), rem << 1); in compact()
|
D | ByteBufferAsDoubleBuffer.java | 142 Memory.memmove(this, ix(0), this, ix(pos), rem << 3); in compact()
|
D | ByteBufferAsCharBuffer.java | 145 Memory.memmove(this, ix(0), this, ix(pos), rem << 1); in compact()
|
D | ByteBuffer.java | 570 Memory.memmove(dstObject, dstOffset, srcObject, srcOffset, n); in put()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Memory.cpp | 104 memmove(dstBytes.get() + dstOffset, srcBytes.get() + srcOffset, length); in Memory_memmove() 293 NATIVE_METHOD(Memory, memmove, "(Ljava/lang/Object;ILjava/lang/Object;IJ)V"),
|
/libcore/luni/src/main/java/libcore/io/ |
D | Memory.java | 152 …public static native void memmove(Object dstObject, int dstOffset, Object srcObject, int srcOffset… in memmove() method in Memory
|
/libcore/ojluni/src/main/native/ |
D | UNIXProcess_md.c | 539 memmove(argv+2, argv+1, (end-argv) * sizeof (*end)); in execve_as_traditional_shell_script() 544 memmove(argv+1, argv+2, (end-argv) * sizeof (*end)); in execve_as_traditional_shell_script()
|