Searched refs:dst_pos (Results 1 – 4 of 4) sorted by relevance
/art/runtime/mirror/ |
D | object_array-inl.h | 95 ObjectArray<T>* dst, int dst_pos, in Copy() argument 99 dst->IsValidIndex(dst_pos) && in Copy() 100 dst->IsValidIndex(dst_pos+length-1)) { in Copy() 102 MemberOffset dst_offset(DataOffset(sizeof(Object*)).Int32Value() + dst_pos * sizeof(Object*)); in Copy() 131 heap->WriteBarrierArray(dst, dst_pos, length); in Copy()
|
D | object_array.h | 50 ObjectArray<T>* dst, int dst_pos,
|
/art/test/MyClassNatives/ |
D | MyClassNatives.java | 33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); in arraycopy() argument
|
/art/compiler/jni/ |
D | jni_compiler_test.cc | 644 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, … in my_arraycopy() argument 649 EXPECT_EQ(5678, dst_pos); in my_arraycopy()
|