Searched refs:dst_elms (Results 1 – 1 of 1) sorted by relevance
2147 Handle<BackingStore> dst_elms = Handle<BackingStore>::cast(backing_store); in MoveElements() local2148 if (heap->CanMoveObjectStart(*dst_elms) && dst_index == 0) { in MoveElements()2150 *dst_elms.location() = in MoveElements()2151 BackingStore::cast(heap->LeftTrimFixedArray(*dst_elms, src_index)); in MoveElements()2152 receiver->set_elements(*dst_elms); in MoveElements()2159 MemMove(dst_elms->data_start() + dst_index, in MoveElements()2160 dst_elms->data_start() + src_index, len * kDoubleSize); in MoveElements()2163 heap->MoveElements(FixedArray::cast(*dst_elms), dst_index, src_index, in MoveElements()2168 dst_elms->FillWithHoles(hole_start, hole_end); in MoveElements()