Searched refs:Size (Results 76 - 100 of 138) sorted by relevance

123456

/art/runtime/
H A Dthread_pool.h57 return stack_->Size();
H A Ddex_file.cc235 if (map->Size() < sizeof(DexFile::Header)) {
251 if (verify && !DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
277 mem_map->Size(),
315 if (!DexFileVerifier::Verify(dex_file.get(), dex_file->Begin(), dex_file->Size(),
1050 dex_file.Begin(), dex_file.Begin() + dex_file.Size());
1065 for (uint32_t i = 0; i < params->Size(); ++i) {
1085 for (uint32_t i = 0; i < params->Size(); ++i) {
H A Delf_file.cc587 if (header_->e_phoff >= Size()) {
590 Size(),
594 if (header_->e_shoff >= Size()) {
597 Size(),
1493 jit_gdb_entry_ = CreateCodeEntry(all.Begin(), all.Size());
1780 if (map == nullptr && map->Size() != EI_NIDENT) {
1814 if (map == nullptr && map->Size() != EI_NIDENT) {
1855 size_t ElfFile::Size() const { function in class:art::ElfFile
1856 DELEGATE_TO_IMPL(Size);
H A Dparsed_options.cc519 size_t boot_class_path_count = ParseStringList<':'>::Split(boot_class_path).Size();
521 if (boot_class_path_count != boot_class_path_locations.Size()) {
527 boot_class_path_locations.Size(), boot_class_path_locations.Join().c_str());
H A Dreference_table.cc109 size_t ReferenceTable::Size() const { function in class:art::ReferenceTable
H A Dtransaction.cc45 field_values_count += it.second.Size();
50 array_values_count += it.second.Size();
/art/compiler/
H A Dimage_writer.cc213 bitmap_section.Size(), bitmap_section.Offset())) {
332 size += layout.Size();
333 CHECK_EQ(layout.Size(), types_size + methods_size + fields_size + strings_size);
971 const uint8_t* oat_data_end = oat_data_begin_ + oat_file_->Size();
997 const size_t bitmap_bytes = image_bitmap_->Size();
1105 CHECK_EQ(temp_table.Size(), intern_table->Size());
1171 DCHECK_LE(offset + n, image_->Size());
/art/compiler/optimizing/
H A Dlocations.h493 return inputs_.Size();
525 return temps_.Size();
H A Ddominator_test.cc36 ASSERT_EQ(graph->GetBlocks().Size(), blocks_length);
H A Dinliner.cc53 for (size_t i = 0; i < blocks.Size(); ++i) {
H A Dbounds_check_elimination.cc279 for (size_t i = 0; i < successors.Size(); i++) {
289 for (size_t i = 0, e = loop_info->GetBackEdges().Size(); i < e; ++i) {
1113 : HGraphVisitor(graph), maps_(graph->GetBlocks().Size()),
1114 need_to_revisit_block_(false), initial_block_size_(graph->GetBlocks().Size()) {}
1259 DCHECK_EQ(true_successor->GetPredecessors().Size(), 1u);
1263 DCHECK_EQ(false_successor->GetPredecessors().Size(), 1u);
H A Dcode_generator_arm.h283 block_labels_.SetSize(GetGraph()->GetBlocks().Size());
H A Dcode_generator_mips64.h261 block_labels_.SetSize(GetGraph()->GetBlocks().Size());
H A Dcode_generator_x86.h274 block_labels_.SetSize(GetGraph()->GetBlocks().Size());
H A Dcode_generator_x86_64.h265 block_labels_.SetSize(GetGraph()->GetBlocks().Size());
/art/patchoat/
H A Dpatchoat.h136 DCHECK_LT(heap_off, image_->Size());
H A Dpatchoat.cc314 size_t expect = oat_file_->Size();
333 size_t expect = image_->Size();
422 for (size_t pos = 0; pos < section.Size(); pos += sizeof(ArtField)) {
433 for (size_t pos = 0; pos < section.Size(); pos += method_size) {
516 CHECK_GT(image_->Size(), sizeof(ImageHeader));
/art/runtime/gc/space/
H A Dlarge_object_space.h90 size_t Size() const { function in class:art::gc::space::LargeObjectSpace
H A Dvalgrind_malloc_space-inl.h245 mem_map->Size() - initial_size);
H A Dbump_pointer_space.cc136 main_block_size_ = Size();
H A Dspace.h295 size_t Size() const { function in class:art::gc::space::ContinuousSpace
374 // Size of the space without a limit on its growth. By default this is just the Capacity, but
/art/compiler/utils/mips/
H A Dassembler_mips.cc96 offset = label->Position() - buffer_.Size();
100 label->LinkTo(buffer_.Size());
112 offset = label->Position() - buffer_.Size();
116 label->LinkTo(buffer_.Size());
151 int bound_pc = buffer_.Size();
/art/runtime/gc/
H A Dheap.cc344 const size_t size = non_moving_space_mem_map->Size();
988 os << "Zygote space size " << PrettySize(zygote_space_->Size()) << "\n";
1259 total_alloc_space_size += malloc_space->Size();
1267 total_alloc_space_allocated -= bump_pointer_space_->Size();
1844 const uint64_t space_size_before_compaction = from_space->Size();
1850 const uint64_t space_size_after_compaction = to_space->Size();
1967 std::min(mem_map->Size(), growth_limit_), mem_map->Size());
1981 mem_map.get(), kDefaultInitialSize, std::min(mem_map->Size(), growth_limit_),
1982 mem_map->Size(), nam
[all...]
/art/runtime/native/
H A Ddalvik_system_VMDebug.cc298 zygoteSize += zygote_space->Size();
308 allocSize += bump_pointer_space->Size();
/art/runtime/base/
H A Dvariant_map.h313 size_t Size() const { function in struct:art::VariantMap

Completed in 1912 milliseconds

123456