Home
last modified time | relevance | path

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

/libcore/luni/src/test/java/libcore/libcore/io/
DMemoryTest.java149 checkPartialMemmove(size, 0, 0, size); in testMemmove()
150 checkPartialMemmove(size, 0, 0, size / 2); in testMemmove()
151 checkPartialMemmove(size, size / 2, size / 2, size - size / 2); in testMemmove()
152 checkPartialMemmove(size, 10, 20, 20); in testMemmove()
159 private void checkPartialMemmove(int size, int offsetDst, int offsetSrc, int count) { in checkPartialMemmove() method in MemoryTest