Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dobject_array-inl.h123 inline void ObjectArray<T>::AssignableMemmove(int32_t dst_pos, ObjectArray<T>* src, in AssignableMemmove()
166 inline void ObjectArray<T>::AssignableMemcpy(int32_t dst_pos, ObjectArray<T>* src, in AssignableMemcpy()
198 inline void ObjectArray<T>::AssignableCheckingMemcpy(int32_t dst_pos, ObjectArray<T>* src, in AssignableCheckingMemcpy()
Darray-inl.h278 inline void PrimitiveArray<T>::Memmove(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, in Memmove()
338 inline void PrimitiveArray<T>::Memcpy(int32_t dst_pos, PrimitiveArray<T>* src, int32_t src_pos, in Memcpy()
/art/runtime/interpreter/
Dunstarted_runtime.cc295 mirror::Array* dst_array, int32_t dst_pos, in PrimitiveArrayCopy()
322 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3); in UnstartedSystemArraycopy() local
/art/test/MyClassNatives/
DMyClassNatives.java33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); in arraycopy()