• Home
  • Raw
  • Download

Lines Matching refs:to_start

118                                 uint32_t to_start, int raw_copy_size) {  in CopyObjectToObjectElements()  argument
127 to_base->length() - to_start); in CopyObjectToObjectElements()
129 int start = to_start + copy_size; in CopyObjectToObjectElements()
138 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToObjectElements()
152 to->set(to_start + i, value, write_barrier_mode); in CopyObjectToObjectElements()
159 ElementsKind to_kind, uint32_t to_start, int raw_copy_size) { in CopyDictionaryToObjectElements() argument
168 int start = to_start + copy_size; in CopyDictionaryToObjectElements()
182 if (to_start + copy_size > to_length) { in CopyDictionaryToObjectElements()
183 copy_size = to_length - to_start; in CopyDictionaryToObjectElements()
194 to->set(i + to_start, value, write_barrier_mode); in CopyDictionaryToObjectElements()
196 to->set_the_hole(isolate, i + to_start); in CopyDictionaryToObjectElements()
208 uint32_t to_start, int raw_copy_size) { in CopyDoubleToObjectElements() argument
215 to_base->length() - to_start); in CopyDoubleToObjectElements()
220 int start = to_start; in CopyDoubleToObjectElements()
230 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToObjectElements()
250 to->set(i + to_start, *value, UPDATE_WRITE_BARRIER); in CopyDoubleToObjectElements()
259 uint32_t to_start, int raw_copy_size) { in CopyDoubleToDoubleElements() argument
266 to_base->length() - to_start); in CopyDoubleToDoubleElements()
268 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDoubleToDoubleElements()
273 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToDoubleElements()
280 to_address += kDoubleSize * to_start; in CopyDoubleToDoubleElements()
291 FixedArrayBase* to_base, uint32_t to_start, in CopySmiToDoubleElements() argument
300 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopySmiToDoubleElements()
305 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopySmiToDoubleElements()
312 from_start < from_end; from_start++, to_start++) { in CopySmiToDoubleElements()
315 to->set_the_hole(to_start); in CopySmiToDoubleElements()
317 to->set(to_start, Smi::cast(hole_or_smi)->value()); in CopySmiToDoubleElements()
326 uint32_t to_start, int packed_size, in CopyPackedSmiToDoubleElements() argument
337 for (uint32_t i = to_start + copy_size; i < to_end; ++i) { in CopyPackedSmiToDoubleElements()
341 to_end = to_start + static_cast<uint32_t>(copy_size); in CopyPackedSmiToDoubleElements()
344 to_end = to_start + static_cast<uint32_t>(copy_size); in CopyPackedSmiToDoubleElements()
348 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyPackedSmiToDoubleElements()
354 from_start < from_end; from_start++, to_start++) { in CopyPackedSmiToDoubleElements()
357 to->set(to_start, Smi::cast(smi)->value()); in CopyPackedSmiToDoubleElements()
365 uint32_t to_start, int raw_copy_size) { in CopyObjectToDoubleElements() argument
373 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyObjectToDoubleElements()
378 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToDoubleElements()
385 from_start < from_end; from_start++, to_start++) { in CopyObjectToDoubleElements()
388 to->set_the_hole(to_start); in CopyObjectToDoubleElements()
390 to->set(to_start, hole_or_object->Number()); in CopyObjectToDoubleElements()
399 uint32_t to_start, in CopyDictionaryToDoubleElements() argument
409 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDictionaryToDoubleElements()
417 if (to_start + copy_size > to_length) { in CopyDictionaryToDoubleElements()
418 copy_size = to_length - to_start; in CopyDictionaryToDoubleElements()
424 to->set(i + to_start, from->ValueAt(entry)->Number()); in CopyDictionaryToDoubleElements()
426 to->set_the_hole(i + to_start); in CopyDictionaryToDoubleElements()
972 uint32_t to_start, int packed_size, in CopyElementsImpl() argument
979 uint32_t to_start, int copy_size) final { in CopyElements() argument
1000 Subclass::CopyElementsImpl(from, from_start, *to, from_kind, to_start, in CopyElements()
1403 uint32_t to_start, int packed_size, in CopyElementsImpl() argument
2498 uint32_t to_start, int packed_size, in CopyElementsImpl() argument
2508 to_start, copy_size); in CopyElementsImpl()
2514 CopyDoubleToObjectElements(from, from_start, to, to_start, copy_size); in CopyElementsImpl()
2518 CopyDictionaryToObjectElements(from, from_start, to, to_kind, to_start, in CopyElementsImpl()
2643 uint32_t to_start, int packed_size, in CopyElementsImpl() argument
2648 CopyPackedSmiToDoubleElements(from, from_start, to, to_start, in CopyElementsImpl()
2652 CopySmiToDoubleElements(from, from_start, to, to_start, copy_size); in CopyElementsImpl()
2656 CopyDoubleToDoubleElements(from, from_start, to, to_start, copy_size); in CopyElementsImpl()
2660 CopyObjectToDoubleElements(from, from_start, to, to_start, copy_size); in CopyElementsImpl()
2663 CopyDictionaryToDoubleElements(from, from_start, to, to_start, in CopyElementsImpl()
3481 uint32_t to_start, int packed_size, in CopyElementsImpl() argument
3486 to_start, copy_size); in CopyElementsImpl()
3490 FAST_HOLEY_ELEMENTS, to_start, copy_size); in CopyElementsImpl()
3655 uint32_t to_start, int packed_size, in CopyElementsImpl() argument
3660 to_start, copy_size); in CopyElementsImpl()
3664 FAST_HOLEY_ELEMENTS, to_start, copy_size); in CopyElementsImpl()