Home | History | Annotate | Download | only in interpreter

Lines Matching refs:src_array

731                                mirror::Array* src_array, int32_t src_pos,
735 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) {
739 src_array->GetClass()->GetComponentType()).c_str(),
744 mirror::PrimitiveArray<T>* src = down_cast<mirror::PrimitiveArray<T>*>(src_array);
782 mirror::Array* src_array = src_obj->AsArray();
787 UNLIKELY(src_pos > src_array->GetLength() - length) ||
791 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos,
807 src_array->GetClass()->GetComponentType()).c_str(),
813 mirror::ObjectArray<mirror::Object>* src = src_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);