Lines Matching refs:src_pos
749 int32_t src_pos, in PrimitiveArrayCopy() argument
765 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in PrimitiveArrayCopy()
768 dst->Set(dst_pos + i, src->Get(src_pos + i)); in PrimitiveArrayCopy()
772 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in PrimitiveArrayCopy()
780 jint src_pos = shadow_frame->GetVReg(arg_offset + 1); in UnstartedSystemArraycopy() local
805 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) || in UnstartedSystemArraycopy()
806 UNLIKELY(src_pos > src_array->GetLength() - length) || in UnstartedSystemArraycopy()
810 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
842 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in UnstartedSystemArraycopy()
845 dst->Set(dst_pos + i, src->Get(src_pos + i)); in UnstartedSystemArraycopy()
849 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in UnstartedSystemArraycopy()
858 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
861 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
865 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
867 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
869 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()