Home
last modified time | relevance | path

Searched refs:AllocateRaw (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/heap/
Dheap-inl.h237 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()
Dheap.cc2090 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 …]
Dspaces-inl.h501 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()
Dscavenger.cc163 heap->new_space()->AllocateRaw(object_size, alignment); in SemiSpaceCopyObject()
191 heap->old_space()->AllocateRaw(object_size, alignment); in PromoteObject()
Dspaces.h2011 MUST_USE_RESULT inline AllocationResult AllocateRaw( in NON_EXPORTED_BASE()
2547 MUST_USE_RESULT INLINE(AllocationResult AllocateRaw(
2808 AllocateRaw(int object_size, Executability executable);
Dheap.h1990 MUST_USE_RESULT inline AllocationResult AllocateRaw(
Dmark-compact.cc1628 AllocationResult allocation = target_space->AllocateRaw(size, alignment); in TryEvacuateObject()
1809 compaction_spaces_->Get(OLD_SPACE)->AllocateRaw(size_in_bytes, in AllocateInOldSpace()
Dspaces.cc2980 AllocationResult LargeObjectSpace::AllocateRaw(int object_size, in AllocateChunk() function in v8::internal::LargeObjectSpace
/external/v8/src/snapshot/
Ddeserializer.cc452 AllocationResult result = lo_space->AllocateRaw(size, exec); in Allocate()