Home
last modified time | relevance | path

Searched refs:AllocateRawUnaligned (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/heap/
Dspaces-inl.h362 AllocationResult PagedSpace::AllocateRawUnaligned(int size_in_bytes) { in AllocateRawUnaligned() function
387 return AllocateRawUnaligned(size_in_bytes); in AllocateRawUnalignedSynchronized()
430 : AllocateRawUnaligned(size_in_bytes); in AllocateRaw()
432 return AllocateRawUnaligned(size_in_bytes); in AllocateRaw()
472 AllocationResult NewSpace::AllocateRawUnaligned(int size_in_bytes) { in AllocateRawUnaligned() function
498 : AllocateRawUnaligned(size_in_bytes); in AllocateRaw()
500 return AllocateRawUnaligned(size_in_bytes); in AllocateRaw()
Dheap-inl.h232 allocation = code_space_->AllocateRawUnaligned(size_in_bytes); in AllocateRaw()
240 allocation = map_space_->AllocateRawUnaligned(size_in_bytes); in AllocateRaw()
Dspaces.h2038 MUST_USE_RESULT inline AllocationResult AllocateRawUnaligned(
2807 AllocationResult AllocateRawUnaligned(int size_in_bytes));
Dheap.cc1161 allocation = new_space()->AllocateRawUnaligned(size); in ReserveSpace()
1163 allocation = paged_space(space)->AllocateRawUnaligned(size); in ReserveSpace()
/external/v8/test/cctest/heap/
Dtest-spaces.cc371 new_space.AllocateRawUnaligned(Page::kMaxRegularHeapObjectSize) in TEST()
396 s->AllocateRawUnaligned(Page::kMaxRegularHeapObjectSize).ToObjectChecked(); in TEST()
431 compaction_space->AllocateRawUnaligned(Page::kMaxRegularHeapObjectSize) in TEST()
485 old_space->AllocateRawUnaligned(kObjectSize).ToObjectChecked(); in TEST()
509 compaction_space->AllocateRawUnaligned(kObjectSize).ToObjectChecked(); in TEST()
514 compaction_space->AllocateRawUnaligned(kAdditionalCompactionMemory) in TEST()
568 spaces[i]->Get(id)->AllocateRawUnaligned(object_size).ToObjectChecked(); in AllocateInCompactionSpaces()
600 old_space->AllocateRawUnaligned(object_size).ToObjectChecked(); in TestCompactionSpaceDivide()
776 new_space->AllocateRawUnaligned(80); in UNINITIALIZED_TEST()
792 AllocationResult allocation = space->AllocateRawUnaligned(size); in AllocateUnaligned()
Dtest-heap.cc4235 CcTest::heap()->new_space()->AllocateRawUnaligned( in TEST()