HomeSort by relevance Sort by last modified time
    Searched refs:mem_map_ (Results 1 - 22 of 22) sorted by null

  /art/runtime/gc/accounting/
read_barrier_table.h 42 mem_map_ = MemMap::MapAnonymous("read barrier table",
47 CHECK(mem_map_.IsValid() && mem_map_.Begin() != nullptr)
71 mem_map_.MadviseDontNeedAndZero();
74 memset(mem_map_.Begin(), kSetEntryValue, mem_map_.Size());
77 for (uint32_t* p = reinterpret_cast<uint32_t*>(mem_map_.Begin());
78 p < reinterpret_cast<uint32_t*>(mem_map_.End()); ++p) {
95 uint8_t* entry_addr = mem_map_.Begin() + reinterpret_cast<uintptr_t>(heap_addr) / kRegionSize;
111 uint8_t* begin = mem_map_.Begin()
116 MemMap mem_map_; member in class:art::gc::accounting::ReadBarrierTable
    [all...]
card_table.cc 96 : mem_map_(std::move(mem_map)), biased_begin_(biased_begin), offset_(offset) {
105 mem_map_.MadviseDontNeedAndZero();
123 uint8_t* begin = mem_map_.Begin() + offset_;
124 uint8_t* end = mem_map_.End();
bitmap.cc 36 : mem_map_(std::move(mem_map)),
37 bitmap_begin_(reinterpret_cast<uintptr_t*>(mem_map_.Begin())),
72 mem_map_.MadviseDontNeedAndZero();
card_table.h 98 return mem_map_.BaseBegin();
102 return mem_map_.BaseSize();
157 MemMap mem_map_; member in class:art::gc::accounting::CardTable
160 // Card table doesn't begin at the beginning of the mem_map_, instead it is displaced by offset
atomic_stack.h 75 DCHECK(mem_map_.IsValid());
80 mem_map_.MadviseDontNeedAndZero();
255 mem_map_ = MemMap::MapAnonymous(name_.c_str(),
260 CHECK(mem_map_.IsValid()) << "couldn't allocate mark stack.\n" << error_msg;
261 uint8_t* addr = mem_map_.Begin();
271 MemMap mem_map_; member in class:art::gc::accounting::AtomicStack
card_table-inl.h 210 << " begin: " << reinterpret_cast<void*>(mem_map_.Begin() + offset_)
211 << " end: " << reinterpret_cast<void*>(mem_map_.End());
225 uint8_t* begin = mem_map_.Begin() + offset_;
226 uint8_t* end = mem_map_.End();
233 << " begin: " << reinterpret_cast<void*>(mem_map_.Begin() + offset_)
234 << " end: " << reinterpret_cast<void*>(mem_map_.End());
space_bitmap.cc 67 : mem_map_(std::move(mem_map)),
120 mem_map_.MadviseDontNeedAndZero();
bitmap.h 113 MemMap mem_map_; member in class:art::gc::accounting::Bitmap
space_bitmap.h 238 MemMap mem_map_; member in class:art::gc::accounting::SpaceBitmap
  /external/tensorflow/tensorflow/compiler/tf2tensorrt/utils/
trt_allocator.cc 89 QCHECK(mem_map_.insert({mem, alloc_mem}).second);
106 auto alloc_mem = mem_map_.find(memory);
107 if (alloc_mem != mem_map_.end()) {
109 mem_map_.erase(alloc_mem->first);
trt_allocator.h 76 std::unordered_map<void*, void*> mem_map_; member in class:tensorflow::tensorrt::TRTDeviceAllocator
  /art/runtime/gc/space/
space.h 380 return &mem_map_;
384 return &mem_map_;
388 return std::move(mem_map_);
399 mem_map_(std::move(mem_map)) {
403 MemMap mem_map_; member in class:art::gc::space::MemMapSpace
malloc_space.cc 64 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(mem_map_.Begin()), kGcCardSize);
65 CHECK_ALIGNED(reinterpret_cast<uintptr_t>(mem_map_.End()), kGcCardSize);
bump_pointer_space.cc 68 growth_end_(mem_map_.End()),
large_object_space.h 229 MemMap mem_map_; member in class:art::gc::space::final
region_space.cc 112 num_regions_(mem_map_.Size() / kRegionSize),
120 CHECK_ALIGNED(mem_map_.Size(), kRegionSize);
121 CHECK_ALIGNED(mem_map_.Begin(), kRegionSize);
124 uint8_t* region_addr = mem_map_.Begin();
    [all...]
dlmalloc_space.cc 343 mspace_ = CreateMspace(mem_map_.Begin(), starting_size_, initial_size_);
rosalloc_space.cc 434 rosalloc_ = CreateRosAlloc(mem_map_.Begin(),
large_object_space.cc 372 mem_map_(std::move(mem_map)) {
411 func(mem_map_);
  /art/libdexfile/dex/
art_dex_file_loader.cc 42 explicit MemMapContainer(MemMap&& mem_map) : mem_map_(std::move(mem_map)) { }
46 if (!mem_map_.IsValid()) {
49 return mem_map_.GetProtect();
59 if (!mem_map_.IsValid()) {
62 return mem_map_.Protect(PROT_READ | PROT_WRITE);
68 if (!mem_map_.IsValid()) {
71 return mem_map_.Protect(PROT_READ);
76 MemMap mem_map_; member in class:art::__anon42::MemMapContainer
  /art/libprofile/profile/
profile_compilation_info.h 713 : fd_(fd), mem_map_(std::move(mem_map)), mem_map_cur_(0) {}
718 MemMap mem_map_; member in class:art::ProfileCompilationInfo::ProfileSource
    [all...]
profile_compilation_info.cc     [all...]

Completed in 770 milliseconds