Searched refs:AllocationResult (Results 1 – 12 of 12) sorted by relevance
/external/chromium_org/v8/src/heap/ |
D | heap.h | 651 MUST_USE_RESULT AllocationResult 1371 MUST_USE_RESULT AllocationResult 1379 MUST_USE_RESULT AllocationResult 1387 MUST_USE_RESULT AllocationResult 1393 MUST_USE_RESULT AllocationResult 1398 MUST_USE_RESULT AllocationResult 1403 MUST_USE_RESULT AllocationResult 1406 MUST_USE_RESULT AllocationResult CopyCode(Code* code); 1409 MUST_USE_RESULT AllocationResult 1662 MUST_USE_RESULT inline AllocationResult AllocateRaw( [all …]
|
D | heap.cc | 929 AllocationResult allocation; in ReserveSpace() 1960 AllocationResult allocation = in SemiSpaceCopyObject() 1999 AllocationResult allocation; in PromoteObject() 2266 AllocationResult Heap::AllocatePartialMap(InstanceType instance_type, in AllocatePartialMap() 2269 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE, MAP_SPACE); in AllocatePartialMap() 2290 AllocationResult Heap::AllocateMap(InstanceType instance_type, in AllocateMap() 2294 AllocationResult allocation = AllocateRaw(Map::kSize, MAP_SPACE, MAP_SPACE); in AllocateMap() 2324 AllocationResult Heap::AllocateFillerObject(int size, bool double_align, in AllocateFillerObject() 2328 AllocationResult allocation = AllocateRaw(size, space, space); in AllocateFillerObject() 2370 AllocationResult allocation = AllocatePartialMap(MAP_TYPE, Map::kSize); in CreateInitialMaps() [all …]
|
D | heap-inl.h | 66 AllocationResult Heap::AllocateInternalizedStringFromUtf8( in AllocateInternalizedStringFromUtf8() 77 AllocationResult Heap::AllocateInternalizedStringImpl(T t, int chars, in AllocateInternalizedStringImpl() 86 AllocationResult Heap::AllocateOneByteInternalizedString( in AllocateOneByteInternalizedString() 97 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); in AllocateOneByteInternalizedString() 118 AllocationResult Heap::AllocateTwoByteInternalizedString(Vector<const uc16> str, in AllocateTwoByteInternalizedString() 129 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); in AllocateTwoByteInternalizedString() 148 AllocationResult Heap::CopyFixedArray(FixedArray* src) { in CopyFixedArray() 154 AllocationResult Heap::CopyFixedDoubleArray(FixedDoubleArray* src) { in CopyFixedDoubleArray() 160 AllocationResult Heap::CopyConstantPoolArray(ConstantPoolArray* src) { in CopyConstantPoolArray() 166 AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationSpace space, in AllocateRaw() [all …]
|
D | spaces-inl.h | 248 AllocationResult PagedSpace::AllocateRaw(int size_in_bytes) { in AllocateRaw() 266 return AllocationResult::Retry(identity()); in AllocateRaw() 274 AllocationResult NewSpace::AllocateRaw(int size_in_bytes) { in AllocateRaw()
|
D | spaces.h | 1603 class AllocationResult { 1606 AllocationResult(Object* object) // NOLINT in AllocationResult() function 1610 AllocationResult() : object_(NULL), retry_space_(INVALID_SPACE) {} in AllocationResult() function 1612 static inline AllocationResult Retry(AllocationSpace space = NEW_SPACE) { 1613 return AllocationResult(space); 1636 explicit AllocationResult(AllocationSpace space) in AllocationResult() function 1760 MUST_USE_RESULT inline AllocationResult AllocateRaw(int size_in_bytes); 2463 MUST_USE_RESULT INLINE(AllocationResult AllocateRaw(int size_in_bytes)); 2580 MUST_USE_RESULT AllocationResult SlowAllocateRaw(int size_in_bytes); 2728 MUST_USE_RESULT AllocationResult
|
D | spaces.cc | 1374 AllocationResult NewSpace::SlowAllocateRaw(int size_in_bytes) { in SlowAllocateRaw() 1396 return AllocationResult::Retry(); in SlowAllocateRaw() 2834 AllocationResult LargeObjectSpace::AllocateRaw(int object_size, in AllocateRaw() 2840 return AllocationResult::Retry(identity()); in AllocateRaw() 2844 return AllocationResult::Retry(identity()); in AllocateRaw() 2849 if (page == NULL) return AllocationResult::Retry(identity()); in AllocateRaw()
|
D | mark-compact.cc | 1986 AllocationResult allocation = new_space->AllocateRaw(size); in DiscoverAndEvacuateBlackObjectsOnPage() 3077 AllocationResult allocation = target_space->AllocateRaw(object_size); in TryPromoteObject() 3145 AllocationResult allocation = space->AllocateRaw(size); in EvacuateLiveObjectsFromPage()
|
/external/chromium_org/v8/test/cctest/ |
D | test-alloc.cc | 38 static AllocationResult AllocateAfterFailures() { in AllocateAfterFailures() 41 if (++attempts < 3) return AllocationResult::Retry(); in AllocateAfterFailures()
|
D | test-spaces.cc | 415 { AllocationResult allocation = lo->AllocateRaw(lo_size, NOT_EXECUTABLE); in TEST()
|
D | test-mark-compact.cc | 143 AllocationResult allocation; in TEST()
|
D | cctest.h | 488 v8::internal::AllocationResult allocation = in SimulateFullSpace()
|
D | test-heap.cc | 3583 v8::internal::AllocationResult allocation = in AllocateAllButNBytes() 3645 AllocationResult allocation = CcTest::heap()->new_space()->AllocateRaw( in TEST()
|