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

/art/runtime/
H A Dvmap_table.h47 size_t Size() const { function in class:art::VmapTable
H A Delf_file.h66 size_t Size() const { function in class:art::ElfFile
67 return map_->Size();
H A Dmem_map.h106 size_t Size() const { function in class:art::MemMap
111 return Begin() + Size();
H A Dtransaction.h93 size_t Size() const { function in class:art::Transaction::ObjectLog
123 size_t Size() const { function in class:art::Transaction::ArrayLog
H A Dintern_table.cc37 size_t InternTable::Size() const { function in class:art::InternTable
39 return strong_interns_.Size() + weak_interns_.Size();
44 return strong_interns_.Size();
49 return weak_interns_.Size();
321 VLOG(heap) << "Swapping " << pre_zygote_table_.Size() << " interns to the pre zygote table";
358 size_t InternTable::Table::Size() const { function in class:art::InternTable::Table
359 return pre_zygote_table_.Size() + post_zygote_table_.Size();
H A Doat_file.h285 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.h239 uint32_t Size() const { function in class:art::DexFile::TypeList
248 // Size in bytes of the part of the list that is common.
253 // Size in bytes of the whole type list including all the stored elements.
873 size_t Size() const { function in class:art::DexFile
1038 size_ = type_list_->Size();
1313 size_t array_size_; // Size of array.
H A Ddebugger.cc4198 JDWP::Write1BE(&p_, 8); // Size of allocation unit, in bytes.
4668 size_t Size() const { function in class:art::StringTable
4795 JDWP::Append2BE(bytes, class_names.Size());
4796 JDWP::Append2BE(bytes, method_names.Size());
4797 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 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 Darena_allocator.h119 size_t Size() const { function in class:art::Arena
124 return Size() - bytes_allocated_;
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/base/
H A Dhash_set.h264 size_t Size() const { function in class:art::HashSet
268 Resize(Size() / max_load_factor_);
289 return static_cast<double>(Size()) / static_cast<double>(NumBuckets());
359 size_t min_index = static_cast<size_t>(Size() / min_load_factor_);
370 DCHECK_GE(new_size, Size());
/art/runtime/hprof/
H A Dhprof.cc346 size_t Size() const { function in class:art::hprof::HprofRecord
775 if (objects_in_segment_ >= OBJECTS_PER_SEGMENT || rec->Size() >= BYTES_PER_SEGMENT) {
866 if (objects_in_segment_ >= OBJECTS_PER_SEGMENT || rec->Size() >= BYTES_PER_SEGMENT) {
1029 size_t size_patch_offset = rec->Size();
1057 rec->UpdateU4(size_patch_offset, rec->Size() - (size_patch_offset + 4));

Completed in 497 milliseconds