Searched refs:dst_array (Results 1 – 1 of 1) sorted by relevance
/art/runtime/interpreter/ |
D | unstarted_runtime.cc | 768 mirror::Array* dst_array, int32_t dst_pos, in PrimitiveArrayCopy() argument 771 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy() 777 dst_array->GetClass()->GetComponentType()).c_str()); in PrimitiveArrayCopy() 781 mirror::PrimitiveArray<T>* dst = down_cast<mirror::PrimitiveArray<T>*>(dst_array); in PrimitiveArrayCopy() 819 mirror::Array* dst_array = dst_obj->AsArray(); in UnstartedSystemArraycopy() local 824 UNLIKELY(dst_pos > dst_array->GetLength() - length)) { in UnstartedSystemArraycopy() 827 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy() 845 dst_array->GetClass()->GetComponentType()).c_str()); in UnstartedSystemArraycopy() 850 mirror::ObjectArray<mirror::Object>* dst = dst_array->AsObjectArray<mirror::Object>(); in UnstartedSystemArraycopy() 877 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy() [all …]
|