Home
last modified time | relevance | path

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

/external/v8/src/
Dheap-inl.h146 AllocationSpace retry_space) { in AllocateRaw() argument
149 retry_space == OLD_POINTER_SPACE || in AllocateRaw()
150 retry_space == OLD_DATA_SPACE || in AllocateRaw()
151 retry_space == LO_SPACE); in AllocateRaw()
165 space = retry_space; in AllocateRaw()
Dheap.cc2899 AllocationSpace retry_space = in Allocate() local
2903 AllocateRaw(map->instance_size(), space, retry_space); in Allocate()
3542 AllocationSpace retry_space = OLD_DATA_SPACE; in AllocateRawAsciiString() local
3550 retry_space = LO_SPACE; in AllocateRawAsciiString()
3556 { MaybeObject* maybe_result = AllocateRaw(size, space, retry_space); in AllocateRawAsciiString()
3577 AllocationSpace retry_space = OLD_DATA_SPACE; in AllocateRawTwoByteString() local
3585 retry_space = LO_SPACE; in AllocateRawTwoByteString()
3591 { MaybeObject* maybe_result = AllocateRaw(size, space, retry_space); in AllocateRawTwoByteString()
3694 AllocationSpace retry_space = in AllocateRawFixedArray() local
3697 return AllocateRaw(size, space, retry_space); in AllocateRawFixedArray()
Dheap.h765 AllocationSpace retry_space);