Searched refs:memory_ (Results 1 – 5 of 5) sorted by relevance
99 memory_.resize(size); in Allocate()100 return memory_.data(); in Allocate()103 const std::vector<uint8_t>& GetMemory() { return memory_; } in GetMemory()106 std::vector<uint8_t> memory_; member in art::OptimizingCFITest::InternalCodeAllocator
69 memory_.resize(size); in Allocate()70 return &memory_[0]; in Allocate()74 const std::vector<uint8_t>& GetMemory() const { return memory_; } in GetMemory()77 std::vector<uint8_t> memory_; member in art::FINAL
109 memory_.reset(new uint8_t[size]); in Allocate()110 return memory_.get(); in Allocate()114 uint8_t* GetMemory() const { return memory_.get(); } in GetMemory()118 std::unique_ptr<uint8_t[]> memory_; member in art::InternalCodeAllocator
126 return memory_; in Begin()130 return memory_ + size_; in End()147 return memory_ <= ptr && ptr < memory_ + bytes_allocated_; in Contains()152 uint8_t* memory_; variable
128 memory_ = reinterpret_cast<uint8_t*>(calloc(1, size)); in MallocArena()133 free(reinterpret_cast<void*>(memory_)); in ~MallocArena()141 memory_ = map_->Begin(); in MemMapArena()222 VALGRIND_MAKE_MEM_UNDEFINED(arena->memory_, arena->bytes_allocated_); in FreeArenaChain()