Lines Matching refs:from_base

150 static void CopyObjectToObjectElements(FixedArrayBase* from_base,
157 from_base->GetIsolate()->heap()->fixed_cow_array_map());
163 copy_size = Min(from_base->length() - from_start,
169 Heap* heap = from_base->GetHeap();
176 (copy_size + static_cast<int>(from_start)) <= from_base->length());
178 FixedArray* from = FixedArray::cast(from_base);
201 FixedArrayBase* from_base, uint32_t from_start, FixedArrayBase* to_base,
204 SeededNumberDictionary* from = SeededNumberDictionary::cast(from_base);
221 DCHECK(to_base != from_base);
250 static void CopyDoubleToObjectElements(Handle<FixedArrayBase> from_base,
261 copy_size = Min(from_base->length() - from_start,
270 Heap* heap = from_base->GetHeap();
277 (copy_size + static_cast<int>(from_start)) <= from_base->length());
279 Isolate* isolate = from_base->GetIsolate();
280 Handle<FixedDoubleArray> from = Handle<FixedDoubleArray>::cast(from_base);
295 static void CopyDoubleToDoubleElements(FixedArrayBase* from_base,
304 copy_size = Min(from_base->length() - from_start,
313 (copy_size + static_cast<int>(from_start)) <= from_base->length());
315 FixedDoubleArray* from = FixedDoubleArray::cast(from_base);
328 static void CopySmiToDoubleElements(FixedArrayBase* from_base,
337 copy_size = from_base->length() - from_start;
345 (copy_size + static_cast<int>(from_start)) <= from_base->length());
347 FixedArray* from = FixedArray::cast(from_base);
362 static void CopyPackedSmiToDoubleElements(FixedArrayBase* from_base,
388 (copy_size + static_cast<int>(from_start)) <= from_base->length());
390 FixedArray* from = FixedArray::cast(from_base);
401 static void CopyObjectToDoubleElements(FixedArrayBase* from_base,
410 copy_size = from_base->length() - from_start;
418 (copy_size + static_cast<int>(from_start)) <= from_base->length());
420 FixedArray* from = FixedArray::cast(from_base);
435 static void CopyDictionaryToDoubleElements(FixedArrayBase* from_base,
441 SeededNumberDictionary* from = SeededNumberDictionary::cast(from_base);