AllocateFixedArray 688 src/elements.cc backing_store->GetHeap()->AllocateFixedArray(len0 + extra);
AllocateFixedArray 1680 src/elements.cc MaybeObject* maybe_obj = array->GetHeap()->AllocateFixedArray(1);
AllocateFixedArray 48 src/factory.cc isolate()->heap()->AllocateFixedArray(size, pretenure),
AllocateFixedArray 2522 src/heap.cc { MaybeObject* maybe_elements = AllocateFixedArray(2);
AllocateFixedArray 2733 src/heap.cc AllocateFixedArray(String::kMaxAsciiCharCode + 1, TENURED);
AllocateFixedArray 2740 src/heap.cc AllocateFixedArray(StringSplitCache::kStringSplitCacheSize, TENURED);
AllocateFixedArray 2746 src/heap.cc { MaybeObject* maybe_obj = AllocateFixedArray(Natives::GetBuiltinsCount());
AllocateFixedArray 2841 src/heap.cc AllocateFixedArray(kInitialNumberStringCacheSize * 2, TENURED);
AllocateFixedArray 2865 src/heap.cc AllocateFixedArray(FullSizeNumberStringCacheLength(), TENURED);
AllocateFixedArray 3944 src/heap.cc { MaybeObject* maybe_properties = AllocateFixedArray(prop_size, pretenure);
AllocateFixedArray 4274 src/heap.cc maybe = AllocateFixedArray(prop_size, TENURED);
AllocateFixedArray 4328 src/heap.cc { MaybeObject* maybe_properties = AllocateFixedArray(prop_size, TENURED);
AllocateFixedArray 4634 src/heap.cc if (always_allocate()) return AllocateFixedArray(length, TENURED);
AllocateFixedArray 4873 src/heap.cc { MaybeObject* maybe_result = AllocateFixedArray(length, pretenure);
AllocateFixedArray 4886 src/heap.cc AllocateFixedArray(Context::GLOBAL_CONTEXT_SLOTS);
AllocateFixedArray 4901 src/heap.cc AllocateFixedArray(scope_info->ContextLength(), TENURED);
AllocateFixedArray 4915 src/heap.cc { MaybeObject* maybe_result = AllocateFixedArray(length);
AllocateFixedArray 4935 src/heap.cc AllocateFixedArray(Context::MIN_CONTEXT_SLOTS + 1);
AllocateFixedArray 4953 src/heap.cc { MaybeObject* maybe_result = AllocateFixedArray(Context::MIN_CONTEXT_SLOTS);
AllocateFixedArray 4986 src/heap.cc MaybeObject* maybe_scope_info = AllocateFixedArray(length, TENURED);
AllocateFixedArray 763 src/heap.h MUST_USE_RESULT MaybeObject* AllocateFixedArray(int length,
AllocateFixedArray 766 src/heap.h MUST_USE_RESULT MaybeObject* AllocateFixedArray(int length);
AllocateFixedArray 5313 src/objects.cc { MaybeObject* maybe_obj = code_->GetHeap()->AllocateFixedArray(2);
AllocateFixedArray 5588 src/objects.cc { MaybeObject* maybe_obj = heap->AllocateFixedArray(new_length);
AllocateFixedArray 5637 src/objects.cc heap->AllocateFixedArray(ToKeyIndex(number_of_descriptors));
AllocateFixedArray 5892 src/objects.cc return HEAP->AllocateFixedArray(LengthFor(deopt_entry_count),
AllocateFixedArray 5900 src/objects.cc return HEAP->AllocateFixedArray(LengthOfFixedArray(number_of_deopt_points),
AllocateFixedArray 8671 src/objects.cc GetHeap()->AllocateFixedArray(transitions * 2 * step + header);
AllocateFixedArray 10685 src/objects.cc { MaybeObject* maybe_obj = source_->GetHeap()->AllocateFixedArray(4);
AllocateFixedArray 11385 src/objects.cc heap->AllocateFixedArray(dict->NumberOfElements(), tenure);
AllocateFixedArray 12064 src/objects.cc { MaybeObject* maybe_obj = heap->AllocateFixedArray(length);
AllocateFixedArray 12073 src/objects.cc { MaybeObject* maybe_obj = heap->AllocateFixedArray(length);
AllocateFixedArray 12486 src/objects.cc heap->AllocateFixedArray(number_of_allocated_fields);
AllocateFixedArray 177 src/runtime.cc heap->AllocateFixedArray(copy->NumberOfLocalProperties());
AllocateFixedArray 12466 src/runtime.cc { MaybeObject* maybe_object = isolate->heap()->AllocateFixedArray(count);
AllocateFixedArray 12546 src/runtime.cc { MaybeObject* maybe_object = isolate->heap()->AllocateFixedArray(count);
AllocateFixedArray 43 src/transitions.cc heap->AllocateFixedArray(ToKeyIndex(number_of_transitions));
AllocateFixedArray 66 test/cctest/test-alloc.cc CHECK(!heap->AllocateFixedArray(100, NOT_TENURED)->IsFailure());
AllocateFixedArray 70 test/cctest/test-alloc.cc CHECK(!heap->AllocateFixedArray(100)->IsFailure());
AllocateFixedArray 83 test/cctest/test-alloc.cc CHECK(!heap->AllocateFixedArray(10000, TENURED)->IsFailure());
AllocateFixedArray 91 test/cctest/test-alloc.cc CHECK(!heap->AllocateFixedArray(kLargeObjectSpaceFillerLength, TENURED)->
AllocateFixedArray 94 test/cctest/test-alloc.cc CHECK(!heap->AllocateFixedArray(kLargeObjectSpaceFillerLength, TENURED)->
AllocateFixedArray 103 test/cctest/test-alloc.cc CHECK(!heap->AllocateFixedArray(100, TENURED)->IsFailure());
AllocateFixedArray 898 test/cctest/test-heap.cc Object* array = HEAP->AllocateFixedArray(allocation_len)->ToObjectChecked();
AllocateFixedArray 909 test/cctest/test-heap.cc Object* array = HEAP->AllocateFixedArray(fixed_array_len)->ToObjectChecked();
AllocateFixedArray 1211 test/cctest/test-heap.cc HEAP->AllocateFixedArray(8192, TENURED)->ToObjectChecked();
AllocateFixedArray 99 test/cctest/test-mark-compact.cc Object* obj = HEAP->AllocateFixedArray(array_size)->ToObjectChecked();
AllocateFixedArray 131 test/cctest/test-mark-compact.cc Object* obj = i::Isolate::Current()->heap()->AllocateFixedArray(length)->
AllocateFixedArray 143 test/cctest/test-mark-compact.cc { MaybeObject* maybe_obj = HEAP->AllocateFixedArray(100, TENURED);
AllocateFixedArray 168 test/cctest/test-mark-compact.cc maybe_array = HEAP->AllocateFixedArray(ARRAY_SIZE);
AllocateFixedArray 172 test/cctest/test-mark-compact.cc array = HEAP->AllocateFixedArray(ARRAY_SIZE)->ToObjectChecked();
AllocateFixedArray 319 test/cctest/test-mark-compact.cc global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
AllocateFixedArray 321 test/cctest/test-mark-compact.cc global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
AllocateFixedArray 323 test/cctest/test-mark-compact.cc global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
AllocateFixedArray 335 test/cctest/test-mark-compact.cc global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
AllocateFixedArray 337 test/cctest/test-mark-compact.cc global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
AllocateFixedArray 339 test/cctest/test-mark-compact.cc global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
AllocateFixedArray 446 test/cctest/test-mark-compact.cc global_handles->Create(HEAP->AllocateFixedArray(1)->ToObjectChecked());
AllocateFixedArray 601 test/cctest/test-serialize.cc HEAP->AllocateFixedArray(kSmallFixedArrayLength)->ToObjectChecked();
AllocateFixedArray 613 test/cctest/test-serialize.cc Object* obj = HEAP->AllocateFixedArray(kSmallFixedArrayLength,
AllocateFixedArray 673 test/cctest/test-serialize.cc Object* obj = HEAP->AllocateFixedArray(large_object_array_length,