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

/art/runtime/
H A Delf_file.h57 byte* Begin() const { function in class:art::ElfFile
58 return map_->Begin();
148 // Check whether the offset is in range, and set to target to Begin() + offset if OK.
H A Dmem_map.h102 byte* Begin() const { function in class:art::MemMap
111 return Begin() + Size();
127 return Begin() <= addr && addr < End();
H A Doat_file.cc51 oat_file->begin_ = elf_file->Begin() + hdr->sh_offset;
52 oat_file->end_ = elf_file->Begin() + hdr->sh_size + hdr->sh_offset;
237 const byte* oat = Begin();
248 Begin(), sizeof(OatHeader), GetOatHeader().GetKeyValueStoreSize(),
308 const uint8_t* dex_file_pointer = Begin() + dex_file_offset;
355 return *reinterpret_cast<const OatHeader*>(Begin());
358 const byte* OatFile::Begin() const { function in class:art::OatFile
471 const byte* oat_class_pointer = oat_file_->Begin() + oat_class_offset;
547 return reinterpret_cast<const uint8_t*>(oat_method_offsets) - oat_file_->Begin();
580 return OatMethod(oat_file_->Begin(), oat_method_offset
[all...]
H A Ddex_file.h869 const byte* Begin() const { function in class:art::DexFile
/art/runtime/gc/accounting/
H A Dspace_bitmap.h149 uword* Begin() { function in class:art::gc::accounting::SpaceBitmap
H A Datomic_stack.h143 T* Begin() const { function in class:art::gc::accounting::AtomicStack
165 std::sort(Begin(), End());
175 return std::binary_search(Begin(), End(), value);
179 return std::find(Begin(), End(), value) != End();
216 byte* addr = mem_map_->Begin();
/art/runtime/gc/space/
H A Dlarge_object_space.h74 byte* Begin() const { function in class:art::gc::space::LargeObjectSpace
83 return End() - Begin();
88 return Begin() <= byte_obj && byte_obj < End();
102 // Begin and end, may change as more large objects are allocated.
159 return (address - reinterpret_cast<uintptr_t>(Begin())) / kAlignment;
165 return reinterpret_cast<uintptr_t>(Begin()) + slot * kAlignment;
H A Dspace.h249 byte* Begin() const { function in class:art::gc::space::ContinuousSpace
275 return End() - Begin();
283 return Limit() - Begin();
290 return byte_ptr >= Begin() && byte_ptr < Limit();
/art/runtime/gc/allocator/
H A Drosalloc.h66 void* Begin() { function in class:art::gc::allocator::RosAlloc::FreePageRun
480 byte* Begin() { return base_; }
/art/compiler/utils/
H A Darena_allocator.h111 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 1208 milliseconds