Home | History | Annotate | Download | only in interpreter

Lines Matching defs:dst_pos

732                                mirror::Array* dst_array, int32_t dst_pos,
746 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length);
749 dst->Set(dst_pos + i, src->Get(src_pos + i));
753 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i));
762 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3);
786 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) ||
788 UNLIKELY(dst_pos > dst_array->GetLength() - length)) {
791 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos,
818 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length);
821 dst->Set(dst_pos + i, src->Get(src_pos + i));
825 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i));
834 dst_pos, src, src_pos, length, true /* throw_exception */);
837 dst_pos, src, src_pos, length, true /* throw_exception */);
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);