Searched refs:base_ (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | pc_relative_fixups_x86.cc | 32 base_(nullptr) {} in PCRelativeHandlerVisitor() 35 if (base_ != nullptr) { in MoveBaseIfNeeded() 39 base_->MoveBeforeFirstUserAndOutOfLoops(); in MoveBaseIfNeeded() 166 if (base_ != nullptr) { in GetPCRelativeBasePointer() 167 return base_; in GetPCRelativeBasePointer() 179 base_ = method_address; in GetPCRelativeBasePointer() 255 HX86ComputeBaseMethodAddress* base_; member in art::x86::PCRelativeHandlerVisitor
|
D | nodes_vector.h | 32 Alignment(size_t base, size_t offset) : base_(base), offset_(offset) { in Alignment() 42 return ((offset_ | base_) & (base - 1u)) == 0; in IsAlignedAt() 45 size_t Base() const { return base_; } in Base() 50 return "ALIGN(" + std::to_string(base_) + "," + std::to_string(offset_) + ")"; in ToString() 54 return base_ == other.base_ && offset_ == other.offset_; 58 size_t base_;
|
/art/libartbase/base/ |
D | transform_iterator.h | 70 ++data_.base_; 85 --data_.base_; 133 return data_.base_; in base() 145 Data(BaseIterator base, Function fn) : Function(fn), base_(base) { } in Data() 147 BaseIterator base_; member
|
D | transform_array_ref.h | 132 return data_.base_; in base() 135 return ArrayRef<const BaseType>(data_.base_); in base() 142 Data(ArrayRef<BaseType> base, Function fn) : Function(fn), base_(base) { } in Data() 144 ArrayRef<BaseType> base_; member
|
/art/runtime/gc/allocator/ |
D | rosalloc.cc | 59 : base_(reinterpret_cast<uint8_t*>(base)), footprint_(capacity), in RosAlloc() 73 memset(base_, 0, max_capacity); in RosAlloc() 75 CHECK_EQ(madvise(base_, max_capacity, MADV_DONTNEED), 0); in RosAlloc() 80 << std::hex << (intptr_t)base_ << ", end=" in RosAlloc() 81 << std::hex << (intptr_t)(base_ + capacity_) in RosAlloc() 104 FreePageRun* free_pages = reinterpret_cast<FreePageRun*>(base_); in RosAlloc() 126 MEMORY_TOOL_MAKE_DEFINED(base_, capacity_); in ~RosAlloc() 180 … if (it != free_page_runs_.rend() && (last_free_page_run = *it)->End(this) == base_ + footprint_) { in AllocPages() 208 DCHECK_EQ(last_free_page_run->End(this), base_ + new_footprint); in AllocPages() 211 FreePageRun* new_free_page_run = reinterpret_cast<FreePageRun*>(base_ + footprint_); in AllocPages() [all …]
|
D | rosalloc.h | 83 …return reinterpret_cast<uint8_t*>(this) + ByteSize(rosalloc) == rosalloc->base_ + rosalloc->footpr… in IsAtEndOfSpace() 610 DCHECK_LE(base_, addr); in ToPageMapIndex() 611 DCHECK_LT(addr, base_ + capacity_); in ToPageMapIndex() 612 size_t byte_offset = reinterpret_cast<const uint8_t*>(addr) - base_; in ToPageMapIndex() 618 DCHECK(base_ <= addr && addr < reinterpret_cast<uint8_t*>(base_) + capacity_); in RoundDownToPageMapIndex() 619 return (reinterpret_cast<uintptr_t>(addr) - reinterpret_cast<uintptr_t>(base_)) / kPageSize; in RoundDownToPageMapIndex() 697 uint8_t* base_; 775 uint8_t* Begin() { return base_; } in Begin() 777 uint8_t* End() { return base_ + capacity_; } in End()
|