Searched refs:copy_length (Results 1 – 4 of 4) sorted by relevance
/art/test/011-array-copy/src/ |
D | Main.java | 209 final int copy_length = 2; in testArrayCopyCharConstCase2() local 210 char[] src = createCharArray(2 * copy_length, SRC_INIT_CHAR, true); in testArrayCopyCharConstCase2() 211 char[] dst = createCharArray(4 * copy_length, DST_CHAR, false); in testArrayCopyCharConstCase2() 213 System.arraycopy(src, 0, dst, 0, copy_length); in testArrayCopyCharConstCase2() 215 boolean passed = verifyCorrectness(src, dst, copy_length); in testArrayCopyCharConstCase2() 224 final int copy_length = 3; in testArrayCopyCharConstCase3() local 225 char[] src = createCharArray(2 * copy_length, SRC_INIT_CHAR, true); in testArrayCopyCharConstCase3() 226 char[] dst = createCharArray(4 * copy_length, DST_CHAR, false); in testArrayCopyCharConstCase3() 228 System.arraycopy(src, 0, dst, 0, copy_length); in testArrayCopyCharConstCase3() 230 boolean passed = verifyCorrectness(src, dst, copy_length); in testArrayCopyCharConstCase3() [all …]
|
/art/libartbase/base/unix_file/ |
D | fd_file_test.cc | 41 size_t copy_length); 298 size_t copy_length) { in TestDataMatches() argument 301 art::MemMap src_mmap = art::MemMap::MapFile(copy_length + input_offset, in TestDataMatches() 310 art::MemMap dest_mmap = art::MemMap::MapFile(copy_length + output_offset, in TestDataMatches() 322 copy_length)); in TestDataMatches()
|
/art/compiler/optimizing/ |
D | intrinsics_riscv64.cc | 1568 Location copy_length, in GenSystemArrayCopyAddresses() argument 1580 GenArrayAddress(codegen, src_end, src_base, copy_length, type, /*data_offset=*/ 0); in GenSystemArrayCopyAddresses()
|
D | intrinsics_arm64.cc | 2862 Location copy_length, in GenSystemArrayCopyAddresses() argument 2875 GenArrayAddress(masm, src_end, src_base, copy_length, type, /*data_offset=*/ 0); in GenSystemArrayCopyAddresses()
|