Lines Matching refs:dst_array
733 mirror::Array* dst_array, int32_t dst_pos, in PrimitiveArrayCopy() argument
736 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy()
742 dst_array->GetClass()->GetComponentType()).c_str()); in PrimitiveArrayCopy()
746 mirror::PrimitiveArray<T>* dst = down_cast<mirror::PrimitiveArray<T>*>(dst_array); in PrimitiveArrayCopy()
784 mirror::Array* dst_array = dst_obj->AsArray(); in UnstartedSystemArraycopy() local
789 UNLIKELY(dst_pos > dst_array->GetLength() - length)) { in UnstartedSystemArraycopy()
792 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
810 dst_array->GetClass()->GetComponentType()).c_str()); in UnstartedSystemArraycopy()
815 mirror::ObjectArray<mirror::Object>* dst = dst_array->AsObjectArray<mirror::Object>(); in UnstartedSystemArraycopy()
842 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
844 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
846 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()