Searched refs:memory_ (Results 1 - 5 of 5) sorted by relevance

/art/compiler/optimizing/
H A Doptimizing_cfi_test.cc127 memory_.resize(size);
128 return memory_.data();
131 const std::vector<uint8_t>& GetMemory() { return memory_; }
134 std::vector<uint8_t> memory_; member in class:art::OptimizingCFITest::InternalCodeAllocator
H A Doptimizing_compiler.cc95 : memory_(arena->Adapter(kArenaAllocCodeBuffer)),
100 memory_.resize(size);
101 return &memory_[0];
105 const ArenaVector<uint8_t>& GetMemory() const { return memory_; }
108 ArenaVector<uint8_t> memory_; member in class:art::FINAL
H A Dcodegen_test.cc115 memory_.reset(new uint8_t[size]);
116 return memory_.get();
120 uint8_t* GetMemory() const { return memory_.get(); }
124 std::unique_ptr<uint8_t[]> memory_; member in class:art::InternalCodeAllocator
/art/runtime/base/
H A Darena_allocator.cc164 memory_ = reinterpret_cast<uint8_t*>(calloc(1, size));
165 CHECK(memory_ != nullptr); // Abort on OOM.
170 free(reinterpret_cast<void*>(memory_));
178 memory_ = map_->Begin();
272 MEMORY_TOOL_MAKE_UNDEFINED(arena->memory_, arena->bytes_allocated_);
H A Darena_allocator.h202 return memory_;
206 return memory_ + size_;
223 return memory_ <= ptr && ptr < memory_ + bytes_allocated_;
228 uint8_t* memory_; member in class:art::Arena

Completed in 87 milliseconds