Home
last modified time | relevance | path

Searched refs:memmove (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/nio/
DByteBufferAsShortBuffer.java140 Memory.memmove(this, ix(0), this, ix(pos), rem << 1); in compact()
DByteBufferAsDoubleBuffer.java142 Memory.memmove(this, ix(0), this, ix(pos), rem << 3); in compact()
DByteBufferAsFloatBuffer.java141 Memory.memmove(this, ix(0), this, ix(pos), rem << 2); in compact()
DByteBufferAsIntBuffer.java141 Memory.memmove(this, ix(0), this, ix(pos), rem << 2); in compact()
DByteBufferAsLongBuffer.java141 Memory.memmove(this, ix(0), this, ix(pos), rem << 3); in compact()
DByteBufferAsCharBuffer.java145 Memory.memmove(this, ix(0), this, ix(pos), rem << 1); in compact()
DByteBuffer.java570 Memory.memmove(dstObject, dstOffset, srcObject, srcOffset, n); in put()
/libcore/luni/src/main/native/
Dlibcore_io_Memory.cpp103 memmove(dstBytes.get() + dstOffset, srcBytes.get() + srcOffset, length); in Memory_memmove()
292 NATIVE_METHOD(Memory, memmove, "(Ljava/lang/Object;ILjava/lang/Object;IJ)V"),
/libcore/luni/src/main/java/libcore/io/
DMemory.java152 …public static native void memmove(Object dstObject, int dstOffset, Object srcObject, int srcOffset… in memmove() method in Memory
/libcore/ojluni/src/main/native/
DUNIXProcess_md.c539 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()