Home | History | Annotate | Download | only in interpreter

Lines Matching refs:dst_array

732                                mirror::Array* dst_array, int32_t dst_pos,
735 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) {
741 dst_array->GetClass()->GetComponentType()).c_str());
745 mirror::PrimitiveArray<T>* dst = down_cast<mirror::PrimitiveArray<T>*>(dst_array);
783 mirror::Array* dst_array = dst_obj->AsArray();
788 UNLIKELY(dst_pos > dst_array->GetLength() - length)) {
791 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos,
809 dst_array->GetClass()->GetComponentType()).c_str());
814 mirror::ObjectArray<mirror::Object>* dst = dst_array->AsObjectArray<mirror::Object>();
841 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length);
843 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length);
845 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length);