Lines Matching refs:src_pos
788 int32_t src_pos, in PrimitiveArrayCopy() argument
804 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in PrimitiveArrayCopy()
807 dst->Set(dst_pos + i, src->Get(src_pos + i)); in PrimitiveArrayCopy()
811 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in PrimitiveArrayCopy()
819 jint src_pos = shadow_frame->GetVReg(arg_offset + 1); in UnstartedSystemArraycopy() local
844 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) || in UnstartedSystemArraycopy()
845 UNLIKELY(src_pos > src_array->GetLength() - length) || in UnstartedSystemArraycopy()
849 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
881 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in UnstartedSystemArraycopy()
884 dst->Set(dst_pos + i, src->Get(src_pos + i)); in UnstartedSystemArraycopy()
888 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in UnstartedSystemArraycopy()
897 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
900 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
904 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
906 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
908 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()