Lines Matching refs:to_start

154                                        ElementsKind to_kind, uint32_t to_start,  in CopyObjectToObjectElements()  argument
164 to_base->length() - to_start); in CopyObjectToObjectElements()
166 int start = to_start + copy_size; in CopyObjectToObjectElements()
175 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToObjectElements()
184 CopyWords(reinterpret_cast<Object**>(to_address) + to_start, in CopyObjectToObjectElements()
192 to->OffsetOfElementAt(to_start), in CopyObjectToObjectElements()
202 ElementsKind to_kind, uint32_t to_start, int raw_copy_size) { in CopyDictionaryToObjectElements() argument
212 int start = to_start + copy_size; in CopyDictionaryToObjectElements()
226 if (to_start + copy_size > to_length) { in CopyDictionaryToObjectElements()
227 copy_size = to_length - to_start; in CopyDictionaryToObjectElements()
234 to->set(i + to_start, value, SKIP_WRITE_BARRIER); in CopyDictionaryToObjectElements()
236 to->set_the_hole(i + to_start); in CopyDictionaryToObjectElements()
242 to->OffsetOfElementAt(to_start), in CopyDictionaryToObjectElements()
254 uint32_t to_start, in CopyDoubleToObjectElements() argument
262 to_base->length() - to_start); in CopyDoubleToObjectElements()
267 int start = to_start; in CopyDoubleToObjectElements()
276 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToObjectElements()
289 to->set(i + to_start, *value, UPDATE_WRITE_BARRIER); in CopyDoubleToObjectElements()
298 uint32_t to_start, int raw_copy_size) { in CopyDoubleToDoubleElements() argument
305 to_base->length() - to_start); in CopyDoubleToDoubleElements()
307 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDoubleToDoubleElements()
312 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToDoubleElements()
319 to_address += kDoubleSize * to_start; in CopyDoubleToDoubleElements()
330 FixedArrayBase* to_base, uint32_t to_start, in CopySmiToDoubleElements() argument
339 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopySmiToDoubleElements()
344 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopySmiToDoubleElements()
351 from_start < from_end; from_start++, to_start++) { in CopySmiToDoubleElements()
354 to->set_the_hole(to_start); in CopySmiToDoubleElements()
356 to->set(to_start, Smi::cast(hole_or_smi)->value()); in CopySmiToDoubleElements()
365 uint32_t to_start, int packed_size, in CopyPackedSmiToDoubleElements() argument
376 for (uint32_t i = to_start + copy_size; i < to_end; ++i) { in CopyPackedSmiToDoubleElements()
380 to_end = to_start + static_cast<uint32_t>(copy_size); in CopyPackedSmiToDoubleElements()
383 to_end = to_start + static_cast<uint32_t>(copy_size); in CopyPackedSmiToDoubleElements()
387 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyPackedSmiToDoubleElements()
393 from_start < from_end; from_start++, to_start++) { in CopyPackedSmiToDoubleElements()
396 to->set(to_start, Smi::cast(smi)->value()); in CopyPackedSmiToDoubleElements()
404 uint32_t to_start, int raw_copy_size) { in CopyObjectToDoubleElements() argument
412 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyObjectToDoubleElements()
417 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToDoubleElements()
424 from_start < from_end; from_start++, to_start++) { in CopyObjectToDoubleElements()
427 to->set_the_hole(to_start); in CopyObjectToDoubleElements()
429 to->set(to_start, hole_or_object->Number()); in CopyObjectToDoubleElements()
438 uint32_t to_start, in CopyDictionaryToDoubleElements() argument
448 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDictionaryToDoubleElements()
456 if (to_start + copy_size > to_length) { in CopyDictionaryToDoubleElements()
457 copy_size = to_length - to_start; in CopyDictionaryToDoubleElements()
462 to->set(i + to_start, from->ValueAt(entry)->Number()); in CopyDictionaryToDoubleElements()
464 to->set_the_hole(i + to_start); in CopyDictionaryToDoubleElements()
709 uint32_t to_start, in CopyElementsImpl() argument
720 uint32_t to_start, in CopyElements() argument
724 from, from_start, to, from_kind, to_start, kPackedSizeNotKnown, in CopyElements()
733 uint32_t to_start, in CopyElements() argument
747 from, from_start, to, from_kind, to_start, packed_size, copy_size); in CopyElements()
1061 uint32_t to_start, in CopyElementsImpl() argument
1071 to_start, copy_size); in CopyElementsImpl()
1076 from, from_start, to, to_kind, to_start, copy_size); in CopyElementsImpl()
1080 to_start, copy_size); in CopyElementsImpl()
1091 to_start, packed_size, copy_size); in CopyElementsImpl()
1186 uint32_t to_start, in CopyElementsImpl() argument
1191 CopyPackedSmiToDoubleElements(*from, from_start, *to, to_start, in CopyElementsImpl()
1195 CopySmiToDoubleElements(*from, from_start, *to, to_start, copy_size); in CopyElementsImpl()
1199 CopyDoubleToDoubleElements(*from, from_start, *to, to_start, copy_size); in CopyElementsImpl()
1203 CopyObjectToDoubleElements(*from, from_start, *to, to_start, copy_size); in CopyElementsImpl()
1206 CopyDictionaryToDoubleElements(*from, from_start, *to, to_start, in CopyElementsImpl()
1446 uint32_t to_start, in CopyElementsImpl() argument
1661 uint32_t to_start, in CopyElementsImpl() argument