Searched defs:Size (Results 1 - 16 of 16) sorted by relevance

/art/runtime/
H A Delf_file.h55 size_t Size() const { function in class:art::ElfFile
56 return map_->Size();
H A Dmem_map.h72 size_t Size() const { function in class:art::MemMap
77 return Begin() + Size();
H A Dvmap_table.h43 size_t Size() const { function in class:art::VmapTable
H A Dreference_table.cc138 size_t ReferenceTable::Size() const { function in class:art::ReferenceTable
H A Dintern_table.cc35 size_t InternTable::Size() const { function in class:art::InternTable
H A Doat_file.h213 size_t Size() const { function in class:art::OatFile
H A Ddex_file.h207 uint32_t Size() const { function in class:art::DexFile::TypeList
812 size_t Size() const { function in class:art::DexFile
922 size_ = type_list_->Size();
1154 size_t array_size_; // Size of array.
H A Ddebugger.cc3221 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
3622 size_t Size() const { function in class:art::StringTable
3744 JDWP::Append2BE(bytes, class_names.Size());
3745 JDWP::Append2BE(bytes, method_names.Size());
3746 JDWP::Append2BE(bytes, filenames.Size());
/art/compiler/dex/
H A Darena_allocator.h47 size_t Size() const { function in class:art::Arena
52 return Size() - bytes_allocated_;
H A Dgrowable_array.h58 if (idx_ >= g_list_->Size()) {
151 size_t Size() const { return num_used_; } function in class:art::GrowableArray
/art/runtime/gc/accounting/
H A Datomic_stack.h103 DCHECK_GE(Size(), static_cast<size_t>(n));
108 return Size() == 0;
111 size_t Size() const { function in class:art::gc::accounting::AtomicStack
164 // Size in number of elements.
H A Dspace_bitmap.h148 // Size of our internal storage
149 size_t Size() const { function in class:art::gc::accounting::SpaceBitmap
153 // Size in bytes of the memory that the bitmaps spans.
155 return IndexToOffset(Size() / kWordSize);
199 // Size of this bitmap.
/art/runtime/gc/space/
H A Dlarge_object_space.h128 size_t Size() const { function in class:art::gc::space::FreeListSpace
H A Dspace.h194 size_t Size() const { function in class:art::gc::space::ContinuousSpace
260 return mem_map_->Size();
263 // Size of the space without a limit on its growth. By default this is just the Capacity, but
/art/compiler/utils/
H A Dassembler.h158 CHECK_LE(position, Size() - static_cast<int>(sizeof(T)));
163 CHECK_LE(position, Size() - static_cast<int>(sizeof(T)));
170 fixup->set_position(Size());
196 size_t Size() const { function in class:art::AssemblerBuffer
250 int ComputeGap() { return buffer_->Capacity() - buffer_->Size(); }
319 // Size of generated code
320 size_t CodeSize() const { return buffer_.Size(); }
/art/runtime/hprof/
H A Dhprof.cc329 size_t Size() const { function in class:art::hprof::HprofRecord
755 if (objects_in_segment_ >= OBJECTS_PER_SEGMENT || rec->Size() >= BYTES_PER_SEGMENT) {
838 if (objects_in_segment_ >= OBJECTS_PER_SEGMENT || rec->Size() >= BYTES_PER_SEGMENT) {
1002 size_t size_patch_offset = rec->Size();
1033 rec->UpdateU4(size_patch_offset, rec->Size() - (size_patch_offset + 4));

Completed in 206 milliseconds