Searched refs:AllocateRaw (Results 1 – 9 of 9) sorted by relevance
/external/v8/src/heap/ |
D | heap-inl.h | 237 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); in AllocateOneByteInternalizedString() 269 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); in AllocateTwoByteInternalizedString() 300 AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationSpace space, in AllocateRaw() function 321 allocation = new_space_->AllocateRaw(size_in_bytes, alignment); in AllocateRaw() 332 allocation = lo_space_->AllocateRaw(size_in_bytes, NOT_EXECUTABLE); in AllocateRaw() 334 allocation = old_space_->AllocateRaw(size_in_bytes, alignment); in AllocateRaw() 340 allocation = lo_space_->AllocateRaw(size_in_bytes, EXECUTABLE); in AllocateRaw() 344 allocation = lo_space_->AllocateRaw(size_in_bytes, NOT_EXECUTABLE); in AllocateRaw()
|
D | heap.cc | 2090 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE); in AllocatePartialMap() 2124 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE); in AllocateMap() 2167 AllocationResult allocation = AllocateRaw(size, space, align); in AllocateFillerObject() 2485 AllocationResult allocation = AllocateRaw(size, space, kDoubleUnaligned); in AllocateHeapNumber() 2500 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); in AllocateCell() 2513 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); in AllocatePropertyCell() 2531 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); in AllocateWeakCell() 3057 AllocationResult allocation = AllocateRaw(size, space); in AllocateByteArray() 3081 AllocationResult allocation = AllocateRaw(size, OLD_SPACE); in AllocateBytecodeArray() 3320 AllocationResult allocation = AllocateRaw(size, space); in AllocateFixedTypedArrayWithExternalPointer() [all …]
|
D | spaces-inl.h | 501 AllocationResult PagedSpace::AllocateRaw(int size_in_bytes, in AllocateRaw() function 575 AllocationResult NewSpace::AllocateRaw(int size_in_bytes, in AllocateRaw() function 590 return AllocateRaw(size_in_bytes, alignment); in AllocateRawSynchronized()
|
D | scavenger.cc | 163 heap->new_space()->AllocateRaw(object_size, alignment); in SemiSpaceCopyObject() 191 heap->old_space()->AllocateRaw(object_size, alignment); in PromoteObject()
|
D | spaces.h | 2011 MUST_USE_RESULT inline AllocationResult AllocateRaw( in NON_EXPORTED_BASE() 2547 MUST_USE_RESULT INLINE(AllocationResult AllocateRaw( 2808 AllocateRaw(int object_size, Executability executable);
|
D | heap.h | 1990 MUST_USE_RESULT inline AllocationResult AllocateRaw(
|
D | mark-compact.cc | 1628 AllocationResult allocation = target_space->AllocateRaw(size, alignment); in TryEvacuateObject() 1809 compaction_spaces_->Get(OLD_SPACE)->AllocateRaw(size_in_bytes, in AllocateInOldSpace()
|
D | spaces.cc | 2980 AllocationResult LargeObjectSpace::AllocateRaw(int object_size, in AllocateChunk() function in v8::internal::LargeObjectSpace
|
/external/v8/src/snapshot/ |
D | deserializer.cc | 452 AllocationResult result = lo_space->AllocateRaw(size, exec); in Allocate()
|