Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dobject_array-inl.h95 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()
Dobject_array.h50 ObjectArray<T>* dst, int dst_pos,
/art/test/MyClassNatives/
DMyClassNatives.java33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); in arraycopy() argument
/art/compiler/jni/
Djni_compiler_test.cc644 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()