Lines Matching refs:to_start
155 uint32_t to_start, in CopyObjectToObjectElements() argument
165 to_base->length() - to_start); in CopyObjectToObjectElements()
167 int start = to_start + copy_size; in CopyObjectToObjectElements()
176 ASSERT((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToObjectElements()
185 CopyWords(reinterpret_cast<Object**>(to_address) + to_start, in CopyObjectToObjectElements()
193 to->OffsetOfElementAt(to_start), in CopyObjectToObjectElements()
205 uint32_t to_start, in CopyDictionaryToObjectElements() argument
217 int start = to_start + copy_size; in CopyDictionaryToObjectElements()
231 if (to_start + copy_size > to_length) { in CopyDictionaryToObjectElements()
232 copy_size = to_length - to_start; in CopyDictionaryToObjectElements()
239 to->set(i + to_start, value, SKIP_WRITE_BARRIER); in CopyDictionaryToObjectElements()
241 to->set_the_hole(i + to_start); in CopyDictionaryToObjectElements()
247 to->OffsetOfElementAt(to_start), in CopyDictionaryToObjectElements()
259 uint32_t to_start, in CopyDoubleToObjectElements() argument
267 to_base->length() - to_start); in CopyDoubleToObjectElements()
272 int start = to_start; in CopyDoubleToObjectElements()
281 ASSERT((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToObjectElements()
294 to->set(i + to_start, *value, UPDATE_WRITE_BARRIER); in CopyDoubleToObjectElements()
303 uint32_t to_start, in CopyDoubleToDoubleElements() argument
311 to_base->length() - to_start); in CopyDoubleToDoubleElements()
313 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDoubleToDoubleElements()
318 ASSERT((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToDoubleElements()
325 to_address += kDoubleSize * to_start; in CopyDoubleToDoubleElements()
337 uint32_t to_start, in CopySmiToDoubleElements() argument
346 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopySmiToDoubleElements()
351 ASSERT((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopySmiToDoubleElements()
358 from_start < from_end; from_start++, to_start++) { in CopySmiToDoubleElements()
361 to->set_the_hole(to_start); in CopySmiToDoubleElements()
363 to->set(to_start, Smi::cast(hole_or_smi)->value()); in CopySmiToDoubleElements()
372 uint32_t to_start, in CopyPackedSmiToDoubleElements() argument
384 for (uint32_t i = to_start + copy_size; i < to_end; ++i) { in CopyPackedSmiToDoubleElements()
388 to_end = to_start + static_cast<uint32_t>(copy_size); in CopyPackedSmiToDoubleElements()
391 to_end = to_start + static_cast<uint32_t>(copy_size); in CopyPackedSmiToDoubleElements()
395 ASSERT((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyPackedSmiToDoubleElements()
401 from_start < from_end; from_start++, to_start++) { in CopyPackedSmiToDoubleElements()
404 to->set(to_start, Smi::cast(smi)->value()); in CopyPackedSmiToDoubleElements()
412 uint32_t to_start, in CopyObjectToDoubleElements() argument
421 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyObjectToDoubleElements()
426 ASSERT((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToDoubleElements()
433 from_start < from_end; from_start++, to_start++) { in CopyObjectToDoubleElements()
436 to->set_the_hole(to_start); in CopyObjectToDoubleElements()
438 to->set(to_start, hole_or_object->Number()); in CopyObjectToDoubleElements()
447 uint32_t to_start, in CopyDictionaryToDoubleElements() argument
458 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDictionaryToDoubleElements()
466 if (to_start + copy_size > to_length) { in CopyDictionaryToDoubleElements()
467 copy_size = to_length - to_start; in CopyDictionaryToDoubleElements()
472 to->set(i + to_start, from->ValueAt(entry)->Number()); in CopyDictionaryToDoubleElements()
474 to->set_the_hole(i + to_start); in CopyDictionaryToDoubleElements()
741 uint32_t to_start, in CopyElementsImpl() argument
752 uint32_t to_start, in CopyElements() argument
756 from, from_start, to, from_kind, to_start, kPackedSizeNotKnown, in CopyElements()
765 uint32_t to_start, in CopyElements() argument
779 from, from_start, to, from_kind, to_start, packed_size, copy_size); in CopyElements()
1110 uint32_t to_start, in CopyElementsImpl() argument
1120 from, from_kind, from_start, to, to_kind, to_start, copy_size); in CopyElementsImpl()
1125 from, from_start, to, to_kind, to_start, copy_size); in CopyElementsImpl()
1129 from, from_start, to, to_kind, to_start, copy_size); in CopyElementsImpl()
1140 to_start, packed_size, copy_size); in CopyElementsImpl()
1238 uint32_t to_start, in CopyElementsImpl() argument
1244 from, from_start, to, to_start, packed_size, copy_size); in CopyElementsImpl()
1247 CopySmiToDoubleElements(from, from_start, to, to_start, copy_size); in CopyElementsImpl()
1251 CopyDoubleToDoubleElements(from, from_start, to, to_start, copy_size); in CopyElementsImpl()
1255 CopyObjectToDoubleElements(from, from_start, to, to_start, copy_size); in CopyElementsImpl()
1259 from, from_start, to, to_start, copy_size); in CopyElementsImpl()
1509 uint32_t to_start, in CopyElementsImpl() argument
1755 uint32_t to_start, in CopyElementsImpl() argument