• Home
  • Raw
  • Download

Lines Matching refs:dst_pos

799                                int32_t dst_pos,  in PrimitiveArrayCopy()  argument
813 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in PrimitiveArrayCopy()
816 dst->Set(dst_pos + i, src->Get(src_pos + i)); in PrimitiveArrayCopy()
820 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in PrimitiveArrayCopy()
831 jint dst_pos = shadow_frame->GetVReg(arg_offset + 3); in UnstartedSystemArraycopy() local
855 if (UNLIKELY(src_pos < 0) || UNLIKELY(dst_pos < 0) || UNLIKELY(length < 0) || in UnstartedSystemArraycopy()
857 UNLIKELY(dst_pos > dst_array->GetLength() - length)) { in UnstartedSystemArraycopy()
860 src_array->GetLength(), src_pos, dst_array->GetLength(), dst_pos, in UnstartedSystemArraycopy()
894 const bool copy_forward = (dst_pos < src_pos) || (dst_pos - src_pos >= length); in UnstartedSystemArraycopy()
897 dst->Set(dst_pos + i, src->Get(src_pos + i)); in UnstartedSystemArraycopy()
901 dst->Set(dst_pos + length - i, src->Get(src_pos + length - i)); in UnstartedSystemArraycopy()
910 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
913 dst_pos, src, src_pos, length, /* throw_exception= */ true); in UnstartedSystemArraycopy()
917 PrimitiveArrayCopy<uint8_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
919 PrimitiveArrayCopy<uint16_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()
921 PrimitiveArrayCopy<int32_t>(self, src_array, src_pos, dst_array, dst_pos, length); in UnstartedSystemArraycopy()