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 114 explicit SwapAllocator(SwapSpace* swap_space) : swap_space_(swap_space) {}
117 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {}
124 SwapSpace* swap_space_; member in class:art::SwapAllocator
149 explicit SwapAllocator(SwapSpace* swap_space) : swap_space_(swap_space) {}
152 SwapAllocator(const SwapAllocator<U>& other) : swap_space_(other.swap_space_) {}
167 if (swap_space_ == nullptr) {
172 return reinterpret_cast<T*>(swap_space_->Alloc(n * sizeof(T)));
176 if (swap_space_ == nullptr)
202 SwapSpace* swap_space_; member in class:art::SwapAllocator
    [all...]
  /art/compiler/driver/
compiled_method_storage.cc 60 return CopyArray(swap_space_.get(), data);
70 ReleaseArray(swap_space_.get(), array);
156 : swap_space_(swap_space) {
160 return CopyArray(swap_space_, array);
164 ReleaseArray(swap_space_, array);
168 SwapSpace* const swap_space_; member in class:art::CompiledMethodStorage::LengthPrefixedArrayAlloc
172 : swap_space_(swap_fd == -1 ? nullptr : new SwapSpace(swap_fd, 10 * MB)),
174 dedupe_code_("dedupe code", LengthPrefixedArrayAlloc<uint8_t>(swap_space_.get())),
176 LengthPrefixedArrayAlloc<SrcMapElem>(swap_space_.get())),
178 LengthPrefixedArrayAlloc<uint8_t>(swap_space_.get()))
    [all...]
compiled_method_storage.h 49 return SwapAllocator<void>(swap_space_.get());
94 std::unique_ptr<SwapSpace> swap_space_;

Completed in 511 milliseconds