Lines Matching refs:AllocateRaw
97 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); in AllocateOneByteInternalizedString()
129 AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE); in AllocateTwoByteInternalizedString()
166 AllocationResult Heap::AllocateRaw(int size_in_bytes, AllocationSpace space, in AllocateRaw() function
183 allocation = new_space_.AllocateRaw(size_in_bytes); in AllocateRaw()
195 allocation = old_pointer_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
197 allocation = old_data_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
200 allocation = code_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
203 allocation = lo_space_->AllocateRaw(size_in_bytes, EXECUTABLE); in AllocateRaw()
206 allocation = lo_space_->AllocateRaw(size_in_bytes, NOT_EXECUTABLE); in AllocateRaw()
208 allocation = cell_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
210 allocation = property_cell_space_->AllocateRaw(size_in_bytes); in AllocateRaw()
213 allocation = map_space_->AllocateRaw(size_in_bytes); in AllocateRaw()