Home | History | Annotate | Download | only in interpreter

Lines Matching refs:src_array

552                                mirror::Array* src_array, int32_t src_pos,
556 if (src_array->GetClass()->GetComponentType() != dst_array->GetClass()->GetComponentType()) {
558 PrettyDescriptor(src_array->GetClass()->GetComponentType()).c_str(),
562 mirror::PrimitiveArray<T>* src = down_cast<mirror::PrimitiveArray<T>*>(src_array);
600 mirror::Array* src_array = src_obj->AsArray();
605 UNLIKELY(src_pos > src_array->GetLength() - length) ||
609 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos,
624 PrettyDescriptor(src_array->GetClass()->GetComponentType()).c_str(),
629 mirror::ObjectArray<mirror::Object>* src = src_array->AsObjectArray<mirror::Object>();
657 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length);
659 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length);
661 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length);