Searched defs:Begin (Results 1 - 15 of 15) sorted by relevance

/art/runtime/gc/collector/
H A Dimmune_region.h60 mirror::Object* Begin() { function in class:art::gc::collector::ImmuneRegion
/art/runtime/
H A Delf_file_impl.h60 uint8_t* Begin() const { function in class:art::ElfFileImpl
61 return map_->Begin();
163 // Check whether the offset is in range, and set to target to Begin() + offset if OK.
H A Dmem_map.h109 uint8_t* Begin() const { function in class:art::MemMap
121 return Begin() + Size();
137 return Begin() <= addr && addr < End();
H A Doat_file.cc96 oat_file->begin_ = elf_file->Begin() + offset;
97 oat_file->end_ = elf_file->Begin() + size + offset;
387 const uint8_t* oat = Begin();
398 Begin(), sizeof(OatHeader), GetOatHeader().GetKeyValueStoreSize(),
460 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
507 return *reinterpret_cast<const OatHeader*>(Begin());
510 const uint8_t* OatFile::Begin() const { function in class:art::OatFile
631 const uint8_t* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
710 return reinterpret_cast<const uint8_t*>(oat_method_offsets) - oat_file_->Begin();
743 return OatMethod(oat_file_->Begin(), oat_method_offset
[all...]
H A Delf_file.cc222 program_headers_start_ = Begin() + GetHeader().e_phoff;
302 Begin() + section_header->sh_offset) {
306 << " != " << reinterpret_cast<void*>(Begin() + section_header->sh_offset);
344 if (Begin() + offset >= End()) {
349 *target = Begin() + offset;
368 if (Begin() + section_header->sh_offset == source) {
374 } else if (Begin() + section_header->sh_offset == target) {
479 CHECK(map_->Begin() != nullptr) << file_->GetPath();
481 header_ = reinterpret_cast<Elf_Ehdr*>(map_->Begin());
1002 uint8_t* strings = Begin()
1859 uint8_t* ElfFile::Begin() const { function in class:art::ElfFile
[all...]
H A Ddex_file.h887 const uint8_t* Begin() const { function in class:art::DexFile
/art/runtime/gc/accounting/
H A Dbitmap.h86 uintptr_t* Begin() { function in class:art::gc::accounting::Bitmap
H A Dspace_bitmap.h149 uintptr_t* Begin() { function in class:art::gc::accounting::SpaceBitmap
H A Datomic_stack.h164 StackReference<T>* Begin() const { function in class:art::gc::accounting::AtomicStack
185 std::sort(Begin(), End(), ObjectComparator());
195 return std::binary_search(Begin(), End(), value, ObjectComparator());
199 for (auto cur = Begin(), end = End(); cur != end; ++cur) {
242 uint8_t* addr = mem_map_->Begin();
/art/runtime/gc/allocator/
H A Drosalloc.h69 void* Begin() { function in class:art::gc::allocator::RosAlloc::FreePageRun
509 uint8_t* Begin() { return base_; }
/art/runtime/gc/space/
H A Dlarge_object_space.h82 uint8_t* Begin() const { function in class:art::gc::space::LargeObjectSpace
91 return End() - Begin();
96 return Begin() <= byte_obj && byte_obj < End();
116 // Begin and end, may change as more large objects are allocated.
177 return (address - reinterpret_cast<uintptr_t>(Begin())) / kAlignment;
183 return reinterpret_cast<uintptr_t>(Begin()) + slot * kAlignment;
H A Dregion_space.h39 // guaranteed to be granted, if it is required, the caller should call Begin on the returned
142 return byte_obj >= Begin() && byte_obj < Limit();
430 uint8_t* Begin() const { function in class:art::gc::space::FINAL::Region
497 uintptr_t offset = reinterpret_cast<uintptr_t>(ref) - reinterpret_cast<uintptr_t>(Begin());
H A Dspace.h270 uint8_t* Begin() const { function in class:art::gc::space::ContinuousSpace
296 return End() - Begin();
304 return Limit() - Begin();
311 return byte_ptr >= Begin() && byte_ptr < Limit();
/art/runtime/base/
H A Darena_allocator.h125 uint8_t* Begin() { function in class:art::Arena
/art/tools/
H A Dcpplint.py685 def Begin(self, function_name): member in class:_FunctionState
2006 function_state.Begin(function)

Completed in 945 milliseconds