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