Lines Matching refs:from_start
152 uint32_t from_start, in CopyObjectToObjectElements() argument
163 copy_size = Min(from_base->length() - from_start, in CopyObjectToObjectElements()
176 (copy_size + static_cast<int>(from_start)) <= from_base->length()); in CopyObjectToObjectElements()
185 reinterpret_cast<Object**>(from_address) + from_start, in CopyObjectToObjectElements()
201 FixedArrayBase* from_base, uint32_t from_start, FixedArrayBase* to_base, in CopyDictionaryToObjectElements() argument
210 copy_size = from->max_number_key() + 1 - from_start; in CopyDictionaryToObjectElements()
230 int entry = from->FindEntry(i + from_start); in CopyDictionaryToObjectElements()
251 uint32_t from_start, in CopyDoubleToObjectElements() argument
261 copy_size = Min(from_base->length() - from_start, in CopyDoubleToObjectElements()
277 (copy_size + static_cast<int>(from_start)) <= from_base->length()); in CopyDoubleToObjectElements()
288 Handle<Object> value = FixedDoubleArray::get(from, i + from_start); in CopyDoubleToObjectElements()
296 uint32_t from_start, in CopyDoubleToDoubleElements() argument
304 copy_size = Min(from_base->length() - from_start, in CopyDoubleToDoubleElements()
313 (copy_size + static_cast<int>(from_start)) <= from_base->length()); in CopyDoubleToDoubleElements()
320 from_address += kDoubleSize * from_start; in CopyDoubleToDoubleElements()
329 uint32_t from_start, in CopySmiToDoubleElements() argument
337 copy_size = from_base->length() - from_start; in CopySmiToDoubleElements()
345 (copy_size + static_cast<int>(from_start)) <= from_base->length()); in CopySmiToDoubleElements()
350 for (uint32_t from_end = from_start + static_cast<uint32_t>(copy_size); in CopySmiToDoubleElements()
351 from_start < from_end; from_start++, to_start++) { in CopySmiToDoubleElements()
352 Object* hole_or_smi = from->get(from_start); in CopySmiToDoubleElements()
363 uint32_t from_start, in CopyPackedSmiToDoubleElements() argument
373 copy_size = packed_size - from_start; in CopyPackedSmiToDoubleElements()
388 (copy_size + static_cast<int>(from_start)) <= from_base->length()); in CopyPackedSmiToDoubleElements()
392 for (uint32_t from_end = from_start + static_cast<uint32_t>(packed_size); in CopyPackedSmiToDoubleElements()
393 from_start < from_end; from_start++, to_start++) { in CopyPackedSmiToDoubleElements()
394 Object* smi = from->get(from_start); in CopyPackedSmiToDoubleElements()
402 uint32_t from_start, in CopyObjectToDoubleElements() argument
410 copy_size = from_base->length() - from_start; in CopyObjectToDoubleElements()
418 (copy_size + static_cast<int>(from_start)) <= from_base->length()); in CopyObjectToDoubleElements()
423 for (uint32_t from_end = from_start + copy_size; in CopyObjectToDoubleElements()
424 from_start < from_end; from_start++, to_start++) { in CopyObjectToDoubleElements()
425 Object* hole_or_object = from->get(from_start); in CopyObjectToDoubleElements()
436 uint32_t from_start, in CopyDictionaryToDoubleElements() argument
446 copy_size = from->max_number_key() + 1 - from_start; in CopyDictionaryToDoubleElements()
460 int entry = from->FindEntry(i + from_start); in CopyDictionaryToDoubleElements()
706 uint32_t from_start, in CopyElementsImpl() argument
717 uint32_t from_start, in CopyElements() argument
724 from, from_start, to, from_kind, to_start, kPackedSizeNotKnown, in CopyElements()
730 uint32_t from_start, in CopyElements() argument
747 from, from_start, to, from_kind, to_start, packed_size, copy_size); in CopyElements()
1058 uint32_t from_start, in CopyElementsImpl() argument
1070 CopyObjectToObjectElements(*from, from_kind, from_start, *to, to_kind, in CopyElementsImpl()
1076 from, from_start, to, to_kind, to_start, copy_size); in CopyElementsImpl()
1079 CopyDictionaryToObjectElements(*from, from_start, *to, to_kind, in CopyElementsImpl()
1090 CopyElementsImpl(arguments, from_start, to, from_kind, in CopyElementsImpl()
1183 uint32_t from_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()
1443 uint32_t from_start, in CopyElementsImpl() argument
1658 uint32_t from_start, in CopyElementsImpl() argument