Lines Matching refs:src_array
767 mirror::Array* src_array, int32_t src_pos, in PrimitiveArrayCopy() argument
771 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) { in PrimitiveArrayCopy()
775 src_array->GetClass()->GetComponentType()).c_str(), in PrimitiveArrayCopy()
780 mirror::PrimitiveArray<T>* src = down_cast<mirror::PrimitiveArray<T>*>(src_array); in PrimitiveArrayCopy()
818 mirror::Array* src_array = src_obj->AsArray(); in UnstartedSystemArraycopy() local
823 UNLIKELY(src_pos > src_array->GetLength() - length) || in UnstartedSystemArraycopy()
827 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
843 src_array->GetClass()->GetComponentType()).c_str(), in UnstartedSystemArraycopy()
849 mirror::ObjectArray<mirror::Object>* src = src_array->AsObjectArray<mirror::Object>(); in UnstartedSystemArraycopy()
877 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
879 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
881 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()