Searched defs:End (Results 1 - 20 of 20) sorted by relevance

/art/dexlayout/
H A Ddex_container.h50 uint8_t* End() { function in class:art::DexContainer::Section
/art/runtime/gc/collector/
H A Dimmune_region.h65 mirror::Object* End() const { function in class:art::gc::collector::ImmuneRegion
/art/runtime/
H A Delf_file_impl.h68 uint8_t* End() const { function in class:art::ElfFileImpl
69 return map_->End();
H A Dmem_map.h66 // [source->Begin(), source->End()].
180 uint8_t* End() const { function in class:art::MemMap
197 return Begin() <= addr && addr < End();
H A Dvdex_file.h219 const uint8_t* End() const { return mmap_->End(); } function in class:art::VdexFile
H A Dimage.h72 uint32_t End() const { function
406 // End of oat data address range for this image file.
409 // End of oat file address range. will be after oat_data_end_ for
H A Delf_file.cc294 if (Begin() + offset >= End()) {
688 if (program_header >= End()) {
719 if (section_header >= End()) {
954 if (string >= End()) {
1263 if ((dsptr < Begin() || dsptr >= End()) && !ValidPointer(dsptr)) {
1325 if (segment->Begin() <= start && start < segment->End()) {
1808 uint8_t* ElfFile::End() const { function in class:art::ElfFile
1809 DELEGATE_TO_IMPL(End);
H A Doat_file.cc395 DCHECK_LE(*oat, oat_file.End());
396 if (UNLIKELY(static_cast<size_t>(oat_file.End() - *oat) < sizeof(T))) {
594 if (UNLIKELY(static_cast<size_t>(End() - oat) < dex_file_location_size)) {
1569 const uint8_t* OatFile::End() const { function in class:art::OatFile
1595 return vdex_->End();
1715 if (lookup_table_data_ + TypeLookupTable::RawDataLength(num_class_defs) > GetOatFile()->End()) {
1760 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation();
1763 CHECK_LT(status_pointer, oat_file_->End()) << oat_file_->GetLocation();
1768 CHECK_LT(type_pointer, oat_file_->End()) << oat_file_->GetLocation();
1773 CHECK_LE(after_type_pointer, oat_file_->End()) << oat_file
[all...]
/art/compiler/debug/
H A Delf_debug_line_writer.h277 void End(bool write_oat_patches) { function in class:art::debug::ElfDebugLineWriter
278 builder_->GetDebugLine()->End();
H A Delf_debug_info_writer.h83 void End(bool write_oat_patches) { function in class:art::debug::ElfDebugInfoWriter
84 builder_->GetDebugInfo()->End();
155 debug_ranges.PushUint64(0); // End of list.
158 debug_ranges.PushUint32(0); // End of list.
/art/compiler/utils/
H A Dswap_space.h57 uintptr_t End() const { function in struct:art::SwapSpace::SpaceChunk
/art/runtime/base/
H A Dtiming_logger.cc59 void CumulativeLogger::End() { function in class:art::CumulativeLogger
H A Darena_allocator.h212 uint8_t* End() { function in class:art::Arena
/art/runtime/gc/accounting/
H A Datomic_stack.h180 StackReference<T>* End() const { function in class:art::gc::accounting::AtomicStack
198 std::sort(Begin(), End(), ObjectComparator());
208 return std::binary_search(Begin(), End(), value, ObjectComparator());
212 for (auto cur = Begin(), end = End(); cur != end; ++cur) {
/art/runtime/gc/space/
H A Dlarge_object_space.h87 uint8_t* End() const { function in class:art::gc::space::LargeObjectSpace
92 return End() - Begin();
97 return Begin() <= byte_obj && byte_obj < End();
108 // GetRangeAtomic returns Begin() and End() atomically, that is, it never returns Begin() and
109 // End() from different allocations.
H A Dregion_space.h471 uint8_t* End() const { function in class:art::gc::space::FINAL::Region
H A Dspace.h274 uint8_t* End() const { function in class:art::gc::space::ContinuousSpace
295 return End() - Begin();
/art/dex2oat/linker/
H A Delf_writer_quick.cc119 bool End() OVERRIDE;
226 builder_->GetRoData()->End();
239 builder_->GetText()->End();
289 bool ElfWriterQuick<ElfTypes>::End() { function in class:art::linker::ElfWriterQuick
290 builder_->End();
311 // End of file.
/art/runtime/gc/allocator/
H A Drosalloc.h73 void* End(RosAlloc* rosalloc) REQUIRES(rosalloc->lock_) {
378 uintptr_t end = reinterpret_cast<uintptr_t>(End());
392 void* End() { function in class:art::gc::allocator::RosAlloc::Run
777 uint8_t* End() { return base_ + capacity_; } function in class:art::gc::allocator::RosAlloc
/art/compiler/linker/
H A Delf_builder.h124 // It is fine to allocate section but never call Start/End() (e.g. the .bss section).
150 void End() { function in class:art::linker::FINAL::Section
266 this->End();
401 this->End();
598 s->End();
606 s->End();
626 void End() { function in class:art::linker::FINAL
649 shstrtab_.End();
826 abiflags_.End();
832 build_id_.End();
[all...]

Completed in 504 milliseconds