Lines Matching refs:to_base
117 FixedArrayBase* to_base, ElementsKind to_kind, in CopyObjectToObjectElements() argument
119 DCHECK(to_base->map() != in CopyObjectToObjectElements()
127 to_base->length() - to_start); in CopyObjectToObjectElements()
130 int length = to_base->length() - start; in CopyObjectToObjectElements()
133 MemsetPointer(FixedArray::cast(to_base)->data_start() + start, in CopyObjectToObjectElements()
138 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToObjectElements()
142 FixedArray* to = FixedArray::cast(to_base); in CopyObjectToObjectElements()
158 FixedArrayBase* from_base, uint32_t from_start, FixedArrayBase* to_base, in CopyDictionaryToObjectElements() argument
169 int length = to_base->length() - start; in CopyDictionaryToObjectElements()
172 MemsetPointer(FixedArray::cast(to_base)->data_start() + start, in CopyDictionaryToObjectElements()
177 DCHECK(to_base != from_base); in CopyDictionaryToObjectElements()
180 FixedArray* to = FixedArray::cast(to_base); in CopyDictionaryToObjectElements()
207 FixedArrayBase* to_base, in CopyDoubleToObjectElements() argument
215 to_base->length() - to_start); in CopyDoubleToObjectElements()
221 int length = to_base->length() - start; in CopyDoubleToObjectElements()
224 MemsetPointer(FixedArray::cast(to_base)->data_start() + start, in CopyDoubleToObjectElements()
230 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToObjectElements()
238 Handle<FixedArray> to(FixedArray::cast(to_base), isolate); in CopyDoubleToObjectElements()
258 FixedArrayBase* to_base, 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()
269 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyDoubleToDoubleElements()
273 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyDoubleToDoubleElements()
277 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); 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()
301 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopySmiToDoubleElements()
305 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopySmiToDoubleElements()
309 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopySmiToDoubleElements()
325 FixedArrayBase* to_base, in CopyPackedSmiToDoubleElements() argument
336 to_end = to_base->length(); in CopyPackedSmiToDoubleElements()
338 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyPackedSmiToDoubleElements()
346 DCHECK(static_cast<int>(to_end) <= to_base->length()); in CopyPackedSmiToDoubleElements()
348 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyPackedSmiToDoubleElements()
352 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopyPackedSmiToDoubleElements()
364 FixedArrayBase* to_base, in CopyObjectToDoubleElements() argument
373 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyObjectToDoubleElements()
374 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyObjectToDoubleElements()
378 DCHECK((copy_size + static_cast<int>(to_start)) <= to_base->length() && in CopyObjectToDoubleElements()
382 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopyObjectToDoubleElements()
398 FixedArrayBase* to_base, in CopyDictionaryToDoubleElements() argument
409 for (int i = to_start + copy_size; i < to_base->length(); ++i) { in CopyDictionaryToDoubleElements()
410 FixedDoubleArray::cast(to_base)->set_the_hole(i); in CopyDictionaryToDoubleElements()
415 FixedDoubleArray* to = FixedDoubleArray::cast(to_base); in CopyDictionaryToDoubleElements()