Lines Matching refs:src_array
837 ObjPtr<mirror::Array> src_array, in PrimitiveArrayCopy() argument
843 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy()
847 src_array->GetClass()->GetComponentType()).c_str(), in PrimitiveArrayCopy()
852 ObjPtr<mirror::PrimitiveArray<T>> src = ObjPtr<mirror::PrimitiveArray<T>>::DownCast(src_array); in PrimitiveArrayCopy()
892 ObjPtr<mirror::Array> src_array = src_obj->AsArray(); in UnstartedSystemArraycopy() local
897 UNLIKELY(src_pos > src_array->GetLength() - length) || in UnstartedSystemArraycopy()
901 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
924 src_array->GetClass()->GetComponentType()).c_str(), in UnstartedSystemArraycopy()
930 ObjPtr<mirror::ObjectArray<mirror::Object>> src = src_array->AsObjectArray<mirror::Object>(); in UnstartedSystemArraycopy()
958 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
960 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
962 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()