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

/art/runtime/
H A Dvmap_table.h47 size_t Size() const { function in class:art::VmapTable
H A Delf_file.h63 size_t Size() const { function in class:art::ElfFile
64 return map_->Size();
H A Dmem_map.h106 size_t Size() const { function in class:art::MemMap
111 return Begin() + Size();
H A Dtransaction.h92 size_t Size() const { function in class:art::Transaction::ObjectLog
122 size_t Size() const { function in class:art::Transaction::ArrayLog
H A Dintern_table.cc36 size_t InternTable::Size() const { function in class:art::InternTable
H A Doat_file.h288 size_t Size() const { function in class:art::OatFile
H A Dreference_table.cc142 size_t ReferenceTable::Size() const { function in class:art::ReferenceTable
H A Ddex_file.h237 uint32_t Size() const { function in class:art::DexFile::TypeList
246 // Size in bytes of the part of the list that is common.
251 // Size in bytes of the whole type list including all the stored elements.
869 size_t Size() const { function in class:art::DexFile
1011 size_ = type_list_->Size();
1286 size_t array_size_; // Size of array.
H A Ddebugger.cc4090 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
4552 size_t Size() const { function in class:art::StringTable
4679 JDWP::Append2BE(bytes, class_names.Size());
4680 JDWP::Append2BE(bytes, method_names.Size());
4681 JDWP::Append2BE(bytes, filenames.Size());
/art/runtime/gc/accounting/
H A Dspace_bitmap.h153 // Size of our internal storage
154 size_t Size() const { function in class:art::gc::accounting::SpaceBitmap
158 // Size in bytes of the memory that the bitmaps spans.
160 return IndexToOffset<uint64_t>(Size() / kWordSize);
219 // Size of this bitmap.
H A Datomic_stack.h130 DCHECK_GE(Size(), static_cast<size_t>(n));
135 return Size() == 0;
138 size_t Size() const { function in class:art::gc::accounting::AtomicStack
210 // Size in number of elements.
/art/runtime/gc/space/
H A Dlarge_object_space.h82 size_t Size() const { function in class:art::gc::space::LargeObjectSpace
H A Dspace.h274 size_t Size() const { function in class:art::gc::space::ContinuousSpace
353 // Size of the space without a limit on its growth. By default this is just the Capacity, but
/art/compiler/utils/
H A Darena_allocator.h119 size_t Size() const { function in class:art::Arena
124 return Size() - bytes_allocated_;
H A Dgrowable_array.h59 if (idx_ >= g_list_->Size()) {
124 DCHECK(index <= Size());
126 for (size_t i = Size() - 1; i > index; --i) {
181 size_t Size() const { return num_used_; } function in class:art::GrowableArray
H A Dassembler.h187 CHECK_LE(position, Size() - static_cast<int>(sizeof(T)));
192 CHECK_LE(position, Size() - static_cast<int>(sizeof(T)));
200 size_t nbytes = Size() - oldposition;
208 fixup->set_position(Size());
234 size_t Size() const { function in class:art::AssemblerBuffer
288 int ComputeGap() { return buffer_->Capacity() - buffer_->Size(); }
359 // Size of generated code
360 virtual size_t CodeSize() const { return buffer_.Size(); }
/art/compiler/utils/arm/
H A Dassembler_thumb2.h499 enum Size { enum in class:art::arm::FINAL::Branch
539 Size newsize = CalculateSize();
572 Size newsize = CalculateSize();
580 Size GetSize() const {
609 void ResetSize(Size size) {
615 Size CalculateSize() const {
664 Size size_;
672 Branch::Size AddBranch(Branch::Type type, uint32_t location, uint32_t target,
/art/runtime/hprof/
H A Dhprof.cc345 size_t Size() const { function in class:art::hprof::HprofRecord
769 if (objects_in_segment_ >= OBJECTS_PER_SEGMENT || rec->Size() >= BYTES_PER_SEGMENT) {
860 if (objects_in_segment_ >= OBJECTS_PER_SEGMENT || rec->Size() >= BYTES_PER_SEGMENT) {
1023 size_t size_patch_offset = rec->Size();
1051 rec->UpdateU4(size_patch_offset, rec->Size() - (size_patch_offset + 4));

Completed in 6768 milliseconds