Searched refs:Size (Results 101 - 125 of 138) sorted by relevance

123456

/art/runtime/
H A Doat_file.h228 size_t Size() const { function in class:art::FINAL
H A Dthread_pool.cc40 CHECK_PTHREAD_CALL(pthread_attr_setstack, (&attr, stack_->Begin(), stack_->Size()), reason);
H A Ddex_file.h240 uint32_t Size() const { function in class:art::DexFile::TypeList
249 // Size in bytes of the part of the list that is common.
254 // Size in bytes of the whole type list including all the stored elements.
891 size_t Size() const { function in class:art::DexFile
1070 size_ = type_list_->Size();
1345 size_t array_size_; // Size of array.
H A Ddex_file_test.cc311 for (size_t j = 0; j < to_find_tl->Size(); j++) {
H A Doat_file.cc446 if (UNLIKELY(dex_file_offset > Size())) {
449 dex_file_location.c_str(), dex_file_offset, Size());
H A Dreflection.cc352 uint32_t num_params = params->Size();
608 uint32_t classes_size = (classes == nullptr) ? 0 : classes->Size();
H A Dstack_map.h26 // Size of a frame slot, in bytes. This constant is a signed value,
31 // Size of Dex virtual registers.
396 size_t Size() const { function in class:art::DexRegisterLocation::DexRegisterLocationCatalog
640 size_t Size() const { function in class:art::DexRegisterLocation::DexRegisterMap
1052 // TODO: Ideally, we would like to use art::DexRegisterLocationCatalog::Size or
H A Dart_method.cc543 auto count = proto_params != nullptr ? proto_params->Size() : 0u;
H A Dclass_linker.cc1193 for (uintptr_t pos = 0; pos < methods.Size(); pos += art_method_size) {
1415 class_table_size = class_table_.Size() + pre_zygote_class_table_.Size();
3882 if (types2 != nullptr && types2->Size() != 0) {
3890 if (types1->Size() != 0) {
3898 uint32_t num_types = types1->Size();
3899 if (UNLIKELY(num_types != types2->Size())) {
4303 for (size_t i = 0; i < interfaces->Size(); i++) {
5646 os << "Zygote loaded classes=" << pre_zygote_class_table_.Size() << " post zygote classes="
5647 << class_table_.Size() << "\
[all...]
/art/compiler/optimizing/
H A Dssa_liveness_analysis.h1098 block_infos_(graph->GetArena(), graph->GetBlocks().Size()),
1102 block_infos_.SetSize(graph->GetBlocks().Size());
1155 return instructions_from_lifetime_position_.Size() * 2 - 1;
H A Dcode_generator_arm64.h310 int length = graph->GetBlocks().Size();
/art/runtime/gc/space/
H A Dimage_space.cc723 nullptr, bitmap_section.Size(), PROT_READ, MAP_PRIVATE, file->Fd(),
735 accounting::ContinuousSpaceBitmap::ComputeHeapSize(bitmap_section.Size())));
857 << ",size=" << PrettySize(Size())
H A Ddlmalloc_space.cc252 // Compare against the actual footprint, rather than the Size(), because the heap may not have
278 madvise(GetMemMap()->Begin(), GetMemMap()->Size(), MADV_DONTNEED);
H A Dregion_space.cc51 size_t mem_map_size = mem_map->Size();
H A Drosalloc_space.cc279 // Compare against the actual footprint, rather than the Size(), because the heap may not have
366 madvise(GetMemMap()->Begin(), GetMemMap()->Size(), MADV_DONTNEED);
/art/compiler/utils/x86/
H A Dassembler_x86.cc1459 int offset = label->Position() - buffer_.Size();
1494 int offset = label->Position() - buffer_.Size();
1607 int bound = buffer_.Size();
1663 int offset = label->Position() - buffer_.Size();
1674 int position = buffer_.Size();
1714 DCHECK_EQ(buffer_.Size(), 0U); // Nothing emitted yet.
/art/compiler/
H A Dimage_writer.h202 DCHECK_LT(offset, oat_file_->Size());
349 // Size of pointers on the target architecture.
/art/runtime/gc/accounting/
H A Dmod_union_table.cc411 0, RoundUp(space_->Size(), CardTable::kCardSize) / CardTable::kCardSize, visitor);
/art/runtime/gc/collector/
H A Dsemi_space.cc426 CHECK_LE(mark_stack_->Size(), new_size);
434 if (UNLIKELY(mark_stack_->Size() >= mark_stack_->Capacity())) {
H A Dconcurrent_copying.cc256 live_stack_freeze_size_ = heap_->GetLiveStack()->Size();
785 CHECK_GE(live_stack_freeze_size_, live_stack->Size());
855 size_t count = GetAllocationStack()->Size();
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc794 int32_t bound_pc = buffer_.Size();
832 uint32_t offset = label->Position() - buffer_.Size();
839 int32_t position = buffer_.Size();
854 uint32_t offset = label->Position() - buffer_.Size();
862 int32_t position = buffer_.Size();
/art/cmdline/
H A Dcmdline_types.h410 size_t Size() const { function in struct:art::ParseStringList
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1936 int offset = label->Position() - buffer_.Size();
1973 int offset = label->Position() - buffer_.Size();
2096 int bound = buffer_.Size();
2160 int offset = label->Position() - buffer_.Size();
2171 int position = buffer_.Size();
2360 DCHECK_EQ(buffer_.Size(), 0U); // Nothing emitted yet.
/art/compiler/utils/arm/
H A Dassembler_thumb2.cc1348 uint32_t location = buffer_.Size();
1593 uint32_t pc = buffer_.Size();
1610 Branch::Size size = AddBranch(branch_type, pc, label->Position(), cond); // Resolved branch.
2251 uint32_t bound_pc = buffer_.Size();
2280 bound_pc = buffer_.Size();
H A Dassembler_arm32.cc721 EmitType5(cond, label->Position() - buffer_.Size(), link);
723 int position = buffer_.Size();
1319 int bound_pc = buffer_.Size();

Completed in 466 milliseconds

123456