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

/art/compiler/optimizing/
H A Doptimizing_cfi_test.cc99 memory_.resize(size);
100 return memory_.data();
103 const std::vector<uint8_t>& GetMemory() { return memory_; }
106 std::vector<uint8_t> memory_; member in class:art::OptimizingCFITest::InternalCodeAllocator
H A Doptimizing_compiler.cc69 memory_.resize(size);
70 return &memory_[0];
74 const std::vector<uint8_t>& GetMemory() const { return memory_; }
77 std::vector<uint8_t> memory_; member in class:art::FINAL
H A Dcodegen_test.cc109 memory_.reset(new uint8_t[size]);
110 return memory_.get();
114 uint8_t* GetMemory() const { return memory_.get(); }
118 std::unique_ptr<uint8_t[]> memory_; member in class:art::InternalCodeAllocator
/art/runtime/base/
H A Darena_allocator.h126 return memory_;
130 return memory_ + size_;
147 return memory_ <= ptr && ptr < memory_ + bytes_allocated_;
152 uint8_t* memory_; member in class:art::Arena
H A Darena_allocator.cc128 memory_ = reinterpret_cast<uint8_t*>(calloc(1, size));
133 free(reinterpret_cast<void*>(memory_));
141 memory_ = map_->Begin();
222 VALGRIND_MAKE_MEM_UNDEFINED(arena->memory_, arena->bytes_allocated_);

Completed in 119 milliseconds