HomeSort by relevance Sort by last modified time
    Searched refs:AllocateRaw (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/v8/src/
heap-inl.h 109 { AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE);
140 { AllocationResult allocation = AllocateRaw(size, space, OLD_DATA_SPACE);
177 AllocationResult Heap::AllocateRaw(int size_in_bytes,
197 allocation = new_space_.AllocateRaw(size_in_bytes);
211 allocation = old_pointer_space_->AllocateRaw(size_in_bytes);
213 allocation = old_data_space_->AllocateRaw(size_in_bytes);
215 allocation = code_space_->AllocateRaw(size_in_bytes);
217 allocation = lo_space_->AllocateRaw(size_in_bytes, NOT_EXECUTABLE);
219 allocation = cell_space_->AllocateRaw(size_in_bytes);
221 allocation = property_cell_space_->AllocateRaw(size_in_bytes)
    [all...]
spaces-inl.h 254 AllocationResult PagedSpace::AllocateRaw(int size_in_bytes) {
291 AllocationResult NewSpace::AllocateRaw(int size_in_bytes) {
heap.cc     [all...]
spaces.h     [all...]
mark-compact.cc     [all...]
spaces.cc     [all...]
heap.h     [all...]
  /external/chromium_org/v8/test/cctest/
test-spaces.cc 331 Object* obj = new_space.AllocateRaw(
361 s->AllocateRaw(Page::kMaxRegularHeapObjectSize).ToObjectChecked();
379 Object* obj = lo->AllocateRaw(lo_size, NOT_EXECUTABLE).ToObjectChecked();
392 { AllocationResult allocation = lo->AllocateRaw(lo_size, NOT_EXECUTABLE);
400 CHECK(lo->AllocateRaw(lo_size, NOT_EXECUTABLE).IsRetry());
cctest.h 467 space->AllocateRaw(new_linear_size);
test-heap.cc     [all...]

Completed in 2497 milliseconds