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

  /art/compiler/utils/
swap_space.h 115 explicit SwapAllocator(SwapSpace* swap_space) : swap_space_(swap_space) {}
118 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {}
125 SwapSpace* swap_space_; member in class:art::SwapAllocator
147 explicit SwapAllocator(SwapSpace* swap_space) : swap_space_(swap_space) {}
150 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {}
165 if (swap_space_ == nullptr) {
168 return reinterpret_cast<T*>(swap_space_->Alloc(n * sizeof(T)));
172 if (swap_space_ == nullptr)
198 SwapSpace* swap_space_; member in class:art::SwapAllocator
    [all...]
  /art/compiler/driver/
compiler_driver.cc 359 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
360 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
    [all...]
compiler_driver.h 611 std::unique_ptr<SwapSpace> swap_space_; member in class:art::CompilerDriver
    [all...]

Completed in 129 milliseconds