Lines Matching refs:src_pos
776 int32_t src_pos, in PrimitiveArrayCopy() argument
792 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in PrimitiveArrayCopy()
795 dst->Set(dst_pos + i, src->Get(src_pos + i)); in PrimitiveArrayCopy()
799 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in PrimitiveArrayCopy()
807 jint src_pos = shadow_frame->GetVReg(arg_offset + 1); in UnstartedSystemArraycopy() local
832 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) || in UnstartedSystemArraycopy()
833 UNLIKELY(src_pos > src_array->GetLength() - length) || in UnstartedSystemArraycopy()
837 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
864 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in UnstartedSystemArraycopy()
867 dst->Set(dst_pos + i, src->Get(src_pos + i)); in UnstartedSystemArraycopy()
871 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in UnstartedSystemArraycopy()
880 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
883 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
887 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
889 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
891 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()