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 116 explicit SwapAllocator(SwapSpace* swap_space) : swap_space_(swap_space) {}
119 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {}
126 SwapSpace* swap_space_; member in class:art::SwapAllocator
148 explicit SwapAllocator(SwapSpace* swap_space) : swap_space_(swap_space) {}
151 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {}
166 if (swap_space_ == nullptr) {
169 return reinterpret_cast<T*>(swap_space_->Alloc(n * sizeof(T)));
173 if (swap_space_ == nullptr)
199 SwapSpace* swap_space_; member in class:art::SwapAllocator
    [all...]
  /art/compiler/driver/
compiler_driver.cc 342 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
343 swap_space_allocator_(new SwapAllocator<void>(swap_space_.get())),
    [all...]
compiler_driver.h 764 std::unique_ptr<SwapSpace> swap_space_; member in class:art::CompilerDriver
    [all...]

Completed in 50 milliseconds