Lines Matching refs:dst_index
217 void FixedArray::MoveElements(Isolate* isolate, int dst_index, int src_index,
220 DCHECK_LE(dst_index + len, length());
223 ObjectSlot dst_slot(RawFieldOfElementAt(dst_index));
228 void FixedArray::CopyElements(Isolate* isolate, int dst_index, FixedArray src,
231 DCHECK_LE(dst_index + len, length());
235 ObjectSlot dst_slot(RawFieldOfElementAt(dst_index));
420 void FixedDoubleArray::MoveElements(Isolate* isolate, int dst_index,
425 MemMove(data_start + dst_index, data_start + src_index, len * kDoubleSize);
466 void WeakFixedArray::CopyElements(Isolate* isolate, int dst_index,
470 DCHECK_LE(dst_index + len, length());
474 MaybeObjectSlot dst_slot(data_start() + dst_index);
501 void WeakArrayList::CopyElements(Isolate* isolate, int dst_index,
505 DCHECK_LE(dst_index + len, capacity());
509 MaybeObjectSlot dst_slot(data_start() + dst_index);