Home
last modified time | relevance | path

Searched refs:begin_ (Results 1 – 25 of 26) sorted by relevance

12

/art/runtime/gc/collector/
Dimmune_region.h47 return reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(begin_) < size_; in ContainsObject()
51 begin_ = begin; in SetBegin()
61 return begin_; in Begin()
74 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_); in UpdateSize()
77 mirror::Object* begin_; variable
Dmark_sweep.cc842 begin_(begin), in CardScanTask()
849 uint8_t* const begin_; member in art::gc::collector::MarkSweep::CardScanTask
862 ? card_table->Scan<true>(bitmap_, begin_, end_, visitor, minimum_age_) in Run()
863 : card_table->Scan<false>(bitmap_, begin_, end_, visitor, minimum_age_); in Run()
864 VLOG(heap) << "Parallel scanning cards " << reinterpret_cast<void*>(begin_) << " - " in Run()
1003 begin_(begin), in RecursiveMarkTask()
1008 const uintptr_t begin_; member in art::gc::collector::MarkSweep::RecursiveMarkTask
1018 bitmap_->VisitMarkedRange(begin_, end_, visitor); in Run()
Dimmune_spaces_test.cc36 begin_ = begin; in FakeOatFile()
/art/runtime/gc/accounting/
Datomic_stack.h76 DCHECK(begin_ != nullptr); in Reset()
113 *start_address = begin_ + index; in AtomicBumpBack()
114 *end_address = begin_ + new_index; in AtomicBumpBack()
118 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr)) in AtomicBumpBack()
128 DCHECK_EQ(begin_[i].AsMirrorPtr(), static_cast<T*>(nullptr)) << "i=" << i; in AssertAllZero()
140 begin_[index].Assign(value); in PushBack()
148 return begin_[back_index_.load(std::memory_order_relaxed)].AsMirrorPtr(); in PopBack()
156 return begin_[index]; in PopFront()
181 return begin_ + front_index_.load(std::memory_order_relaxed); in Begin()
184 return begin_ + back_index_.load(std::memory_order_relaxed); in End()
[all …]
Dspace_bitmap_test.cc46 begin_(begin), in BitmapVerify()
50 EXPECT_TRUE(obj >= begin_); in operator ()()
56 const mirror::Object* begin_; member in art::gc::accounting::BitmapVerify
/art/cmdline/
Dtoken_range.h44 begin_(token_list_->begin()), in TokenRange()
52 begin_(token_list_->begin()), in TokenRange()
62 begin_(token_list_->begin()),
72 begin_(token_list_->begin()), in TokenRange()
79 begin_(token_list_->begin()), in TokenRange()
88 begin_(it_begin), in TokenRange()
103 begin_(token_list_->begin()), in TokenRange()
147 return begin_; in begin()
157 return std::distance(begin_, end_); in Size()
168 return *(begin_ + offset); in GetToken()
[all …]
/art/libartbase/base/
Darena_allocator.cc197 size_t total = ptr_ - begin_; in BytesUsed()
209 begin_(nullptr), in ArenaAllocator()
219 arena_head_->bytes_allocated_ = ptr_ - begin_; in UpdateBytesAllocated()
288 begin_ = new_arena->Begin(); in AllocFromNewArena()
289 DCHECK_ALIGNED(begin_, kAlignment); in AllocFromNewArena()
290 ptr_ = begin_ + bytes; in AllocFromNewArena()
315 if (ptr >= begin_ && ptr < end_) { in Contains()
Dmem_map.cc670 std::swap(begin_, other.begin_); in SwapMembers()
682 : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size), in MemMap()
685 CHECK(begin_ == nullptr); in MemMap()
689 CHECK(begin_ != nullptr); in MemMap()
725 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_); in RemapAtEnd()
726 DCHECK_ALIGNED(begin_, kPageSize); in RemapAtEnd()
730 uint8_t* old_end = begin_ + size_; in RemapAtEnd()
737 size_t new_size = new_end - reinterpret_cast<uint8_t*>(begin_); in RemapAtEnd()
739 DCHECK_LE(begin_ + new_size, reinterpret_cast<uint8_t*>(base_begin_) + new_base_size); in RemapAtEnd()
793 DCHECK_EQ(begin_, base_begin_); in ReleaseReservedMemory()
[all …]
Dmem_map.h241 return begin_; in Begin()
379 uint8_t* begin_ = nullptr; // Start of data. May be changed by AlignBy. variable
Darena_allocator.h374 uint8_t* begin_; variable
/art/libdexfile/dex/
Ddex_file_verifier.cc200 begin_(begin), in DexFileVerifier()
376 const uint8_t* const begin_; member in art::dex::DexFileVerifier
516 size_t offset = reinterpret_cast<const uint8_t*>(start) - begin_; in CheckListSize()
655 const dex::MapList* map = reinterpret_cast<const dex::MapList*>(begin_ + header_->map_off_); in CheckMap()
766 if (!DecodeUnsignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \
772 if (!DecodeUnsignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \
779 if (!DecodeSignedLeb128Checked(&(ptr), begin_ + size_, &(var))) { \
843 (reinterpret_cast<const dex::FieldId*>(begin_ + header_->field_ids_off_) + idx)->class_idx_; in CheckClassDataItemField()
871 *(reinterpret_cast<const dex::MethodId*>(begin_ + header_->method_ids_off_) + idx); in CheckClassDataItemMethod()
928 if (!CheckListSize(begin_ + offset, aligned_offset - offset, sizeof(uint8_t), "section")) { in CheckPadding()
[all …]
Ddex_file.cc106 : begin_(base), in DexFile()
128 CHECK(begin_ != nullptr) << GetLocation(); in DexFile()
133 CHECK_ALIGNED(begin_, alignof(Header)); in DexFile()
Ddex_file.h715 return begin_; in Begin()
836 const uint8_t* const begin_; variable
/art/runtime/
Doat_file-inl.h41 return reinterpret_cast<const uint8_t*>(method_header) - begin_; in GetOatQuickMethodHeaderOffset()
70 return static_cast<uint32_t>(vmap_table != nullptr ? vmap_table - begin_ : 0u); in GetVmapTableOffset()
Doat_file.h217 : begin_(base), code_offset_(code_offset) { in OatMethod()
236 return reinterpret_cast<T>(begin_ + offset); in GetOatPointer()
239 const uint8_t* begin_; variable
399 const uint8_t* begin_; variable
Doat_file.cc176 begin_ = begin; in SetBegin()
347 begin_ = FindDynamicSymbolAddress("oatdata", &symbol_error_msg); in ComputeFields()
348 if (begin_ == nullptr) { in ComputeFields()
1381 if (vaddr <= context->begin_ && context->begin_ < vaddr + memsz) { in PreSetup()
1414 const uint8_t* const begin_; in PreSetup()
1938 begin_(nullptr), in OatFile()
1962 CHECK(begin_ != nullptr); in Begin()
1963 return begin_; in Begin()
/art/runtime/gc/space/
Dregion_space.h395 begin_(nullptr), in Region()
408 begin_ = begin; in Init()
442 DCHECK_EQ(begin_, Top()); in IsFree()
476 DCHECK_LT(begin_ + kRegionSize, Top()); in IsLarge()
489 DCHECK_EQ(begin_, Top()); in IsLargeTail()
564 live_bytes_ += IsLarge() ? Top() - begin_ : live_bytes; in AddLiveBytes()
582 return begin_; in Begin()
598 return begin_ <= reinterpret_cast<uint8_t*>(ref) && reinterpret_cast<uint8_t*>(ref) < end_; in Contains()
607 top_.store(begin_ + num_bytes, std::memory_order_relaxed); in RecordThreadLocalAllocations()
618 uint8_t* begin_; // The begin address of the region. variable
Dregion_space-inl.h491 DCHECK_LT(begin_ + kRegionSize, Top()); in BytesAllocated()
492 return static_cast<size_t>(Top() - begin_); in BytesAllocated()
494 DCHECK_EQ(begin_, Top()); in BytesAllocated()
498 DCHECK_LE(begin_, Top()); in BytesAllocated()
501 bytes = thread_->GetTlabEnd() - begin_; in BytesAllocated()
503 bytes = static_cast<size_t>(Top() - begin_); in BytesAllocated()
512 DCHECK_LT(begin_ + kRegionSize, Top()); in ObjectsAllocated()
516 DCHECK_EQ(begin_, Top()); in ObjectsAllocated()
Dmalloc_space.cc146 SetEnd(begin_ + growth_limit); in SetGrowthLimit()
187 DCHECK_ALIGNED(begin_, accounting::CardTable::kCardSize); in CreateZygoteSpace()
189 DCHECK_ALIGNED(begin_, kPageSize); in CreateZygoteSpace()
198 VLOG(heap) << "Begin " << reinterpret_cast<const void*>(begin_) << "\n" in CreateZygoteSpace()
Dspace.h273 return begin_; in Begin()
331 Space(name, gc_retention_policy), begin_(begin), end_(end), limit_(limit) { in ContinuousSpace()
335 uint8_t* begin_; variable
Dlarge_object_space.h89 return begin_; in Begin()
141 uint8_t* begin_; variable
Dlarge_object_space.cc117 total_objects_allocated_(0), begin_(begin), end_(end) { in LargeObjectSpace()
155 if (begin_ == nullptr || begin_ > reinterpret_cast<uint8_t*>(obj)) { in Alloc()
156 begin_ = reinterpret_cast<uint8_t*>(obj); in Alloc()
Dbump_pointer_space.h91 return growth_end_ - begin_; in Capacity()
Dregion_space.cc957 << reinterpret_cast<void*>(begin_) in Dump()
1018 top_.store(begin_, std::memory_order_relaxed); in Clear()
1025 ZeroAndProtectRegion(begin_, end_); in Clear()
Dimage_space.cc2375 : diff_(diff), begin_(begin), size_(size) {} in SimpleRelocateVisitor()
2400 return raw_ptr - begin_ < size_; in InSource()
2407 return src_ptr - begin_ < size_; in InDest()
2412 const uint32_t begin_; member in art::gc::space::ImageSpace::BootImageLoader::SimpleRelocateVisitor
2426 begin_(begin), in SplitRangeRelocateVisitor()
2428 DCHECK_NE(begin_, bound_); in SplitRangeRelocateVisitor()
2430 DCHECK_LT(bound_ - begin_, size_); in SplitRangeRelocateVisitor()
2444 return raw_ptr - begin_ < size_; in InSource()
2451 const uint32_t begin_; member in art::gc::space::ImageSpace::BootImageLoader::SplitRangeRelocateVisitor

12