Home
last modified time | relevance | path

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

/external/v8/src/
Dheap-inl.h185 AllocationSpace retry_space) { in AllocateRaw() argument
188 retry_space == OLD_POINTER_SPACE || in AllocateRaw()
189 retry_space == OLD_DATA_SPACE || in AllocateRaw()
190 retry_space == LO_SPACE); in AllocateRaw()
204 space = retry_space; in AllocateRaw()
Dheap.cc3516 AllocationSpace retry_space = in Allocate() local
3520 AllocateRaw(map->instance_size(), space, retry_space); in Allocate()
4350 AllocationSpace retry_space = OLD_DATA_SPACE; in AllocateRawAsciiString() local
4358 retry_space = LO_SPACE; in AllocateRawAsciiString()
4365 { MaybeObject* maybe_result = AllocateRaw(size, space, retry_space); in AllocateRawAsciiString()
4386 AllocationSpace retry_space = OLD_DATA_SPACE; in AllocateRawTwoByteString() local
4394 retry_space = LO_SPACE; in AllocateRawTwoByteString()
4401 { MaybeObject* maybe_result = AllocateRaw(size, space, retry_space); in AllocateRawTwoByteString()
4541 AllocationSpace retry_space = in AllocateRawFixedArray() local
4544 return AllocateRaw(size, space, retry_space); in AllocateRawFixedArray()
[all …]
Dheap.h965 AllocationSpace retry_space);
/external/chromium_org/v8/src/
Dheap-inl.h216 AllocationSpace retry_space) { in AllocateRaw() argument
235 if (always_allocate() && result->IsFailure() && retry_space != NEW_SPACE) { in AllocateRaw()
236 space = retry_space; in AllocateRaw()
Dheap.cc4407 AllocationSpace retry_space = in AllocateWithAllocationSite() local
4411 MaybeObject* maybe_result = AllocateRaw(size, space, retry_space); in AllocateWithAllocationSite()
4427 AllocationSpace retry_space = in Allocate() local
4431 MaybeObject* maybe_result = AllocateRaw(size, space, retry_space); in Allocate()
Dheap.h1114 AllocationSpace retry_space);