Home
last modified time | relevance | path

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

/art/runtime/interpreter/
Dunstarted_runtime.cc295 mirror::Array* dst_array, int32_t dst_pos, in PrimitiveArrayCopy() argument
298 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy()
301 PrettyDescriptor(dst_array->GetClass()->GetComponentType()).c_str()); in PrimitiveArrayCopy()
305 mirror::PrimitiveArray<T>* dst = down_cast<mirror::PrimitiveArray<T>*>(dst_array); in PrimitiveArrayCopy()
325 mirror::Array* dst_array = shadow_frame->GetVRegReference(arg_offset + 2)->AsArray(); in UnstartedSystemArraycopy() local
332 if (dst_array == nullptr) { in UnstartedSystemArraycopy()
340 UNLIKELY(dst_pos > dst_array->GetLength() - length)) { in UnstartedSystemArraycopy()
343 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
360 PrettyDescriptor(dst_array->GetClass()->GetComponentType()).c_str()); in UnstartedSystemArraycopy()
369 PrettyDescriptor(dst_array->GetClass()->GetComponentType()).c_str()); in UnstartedSystemArraycopy()
[all …]