• Home
  • Raw
  • Download

Lines Matching refs:to_base

153                                        FixedArrayBase* to_base,  in CopyObjectToObjectElements()  argument
156 DCHECK(to_base->map() != in CopyObjectToObjectElements()
164 to_base->length() - to_start); in CopyObjectToObjectElements()
167 int length = to_base->length() - start; in CopyObjectToObjectElements()
170 MemsetPointer(FixedArray::cast(to_base)->data_start() + start, in CopyObjectToObjectElements()
175 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToObjectElements()
179 FixedArray* to = FixedArray::cast(to_base); in CopyObjectToObjectElements()
201 FixedArrayBase* from_base, uint32_t from_start, FixedArrayBase* to_base, in CopyDictionaryToObjectElements() argument
213 int length = to_base->length() - start; in CopyDictionaryToObjectElements()
216 MemsetPointer(FixedArray::cast(to_base)->data_start() + start, in CopyDictionaryToObjectElements()
221 DCHECK(to_base != from_base); in CopyDictionaryToObjectElements()
224 FixedArray* to = FixedArray::cast(to_base); in CopyDictionaryToObjectElements()
252 Handle<FixedArrayBase> to_base, in CopyDoubleToObjectElements() argument
262 to_base->length() - to_start); in CopyDoubleToObjectElements()
268 int length = to_base->length() - start; in CopyDoubleToObjectElements()
271 MemsetPointer(FixedArray::cast(*to_base)->data_start() + start, in CopyDoubleToObjectElements()
276 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToObjectElements()
281 Handle<FixedArray> to = Handle<FixedArray>::cast(to_base); in CopyDoubleToObjectElements()
297 FixedArrayBase* to_base, 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()
308 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyDoubleToDoubleElements()
312 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToDoubleElements()
316 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); 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()
340 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopySmiToDoubleElements()
344 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopySmiToDoubleElements()
348 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopySmiToDoubleElements()
364 FixedArrayBase* to_base, in CopyPackedSmiToDoubleElements() argument
375 to_end = to_base->length(); in CopyPackedSmiToDoubleElements()
377 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyPackedSmiToDoubleElements()
385 DCHECK(static_cast<int>(to_end) <= to_base->length()); in CopyPackedSmiToDoubleElements()
387 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyPackedSmiToDoubleElements()
391 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopyPackedSmiToDoubleElements()
403 FixedArrayBase* to_base, in CopyObjectToDoubleElements() argument
412 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyObjectToDoubleElements()
413 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyObjectToDoubleElements()
417 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToDoubleElements()
421 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopyObjectToDoubleElements()
437 FixedArrayBase* to_base, in CopyDictionaryToDoubleElements() argument
448 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDictionaryToDoubleElements()
449 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyDictionaryToDoubleElements()
454 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopyDictionaryToDoubleElements()