/art/runtime/base/ |
H A D | bounded_fifo.h | 38 size_ = 0; 46 return size_; 50 ++size_; 51 DCHECK_LE(size_, kMaxSize); 57 DCHECK_GT(size_, 0U); 58 return data_[(back_index_ - size_) & mask_]; 62 DCHECK_GT(size_, 0U); 63 --size_; 68 size_t back_index_, size_; member in class:art::BoundedFifoPowerOfTwo
|
H A D | arena_allocator.h | 130 return memory_ + size_; 134 return size_; 153 size_t size_; member in class:art::Arena
|
H A D | arena_allocator.cc | 129 size_ = size; 142 size_ = map_->Size();
|
/art/compiler/utils/ |
H A D | array_ref.h | 61 : array_(nullptr), size_(0u) { 66 : array_(array), size_(size) { function in class:art::ArrayRef 73 : array_(array), size_(size) { function in class:art::ArrayRef 77 : array_(array_in), size_(size_in) { 82 : array_(v.data()), size_(v.size()) { 89 : array_(v.data()), size_(v.size()) { 98 size_ = other.size_; 115 iterator end() { return array_ + size_; } 116 const_iterator end() const { return array_ + size_; } 166 size_t size_; member in class:art::ArrayRef [all...] |
H A D | dex_cache_arrays_layout.h | 36 size_(0u) { 47 return size_; 88 const size_t size_; member in class:art::DexCacheArraysLayout
|
H A D | managed_register.h | 93 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { } 96 : ManagedRegister(other), size_(-1), spill_offset_(-1) { } 99 : ManagedRegister(other), size_(size), spill_offset_(-1) { } 106 return size_; 110 int32_t size_; member in class:art::ManagedRegisterSpill
|
H A D | swap_space.cc | 68 size_(0), 136 int result = TEMP_FAILURE_RETRY(ftruncate64(fd_, size_ + next_part)); 141 mmap(nullptr, next_part, PROT_READ | PROT_WRITE, MAP_SHARED, fd_, size_)); 144 LOG(ERROR) << "Current size: " << size_ << " requested: " << next_part << "/" << min_size; 151 size_ += next_part;
|
H A D | dex_cache_arrays_layout-inl.h | 36 size_(fields_offset_ + FieldsSize(dex_file->NumFieldIds())) {
|
H A D | swap_space.h | 67 return size_; 74 size_t size_; member in class:art::SwapSpace
|
/art/runtime/gc/collector/ |
H A D | immune_region.h | 49 return reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(begin_) < size_; 69 return size_ == 0; 72 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_); 77 uintptr_t size_; member in class:art::gc::collector::ImmuneRegion
|
H A D | concurrent_copying.h | 56 explicit MarkQueue(size_t size) : size_(size) { 57 CHECK(IsPowerOfTwo(size_)); 58 buf_.reset(new Atomic<mirror::Object*>[size_]); 64 return &(buf_.get()[index & (size_ - 1)]); 73 if (t + size_ == h) { 87 if (t + size_ == h) { 124 memset(buf_.get(), 0, size_ * sizeof(Atomic<mirror::Object*>)); 131 size_t size_; member in class:art::gc::collector::MarkQueue
|
/art/runtime/ |
H A D | image.h | 29 ImageSection() : offset_(0), size_(0) { } 30 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } 39 return size_; 47 return offset - offset_ < size_; 52 uint32_t size_; variable
|
H A D | memory_region.h | 38 MemoryRegion() : pointer_(nullptr), size_(0) {} 39 MemoryRegion(void* pointer_in, uintptr_t size_in) : pointer_(pointer_in), size_(size_in) {} 42 size_t size() const { return size_; } 43 size_t size_in_bits() const { return size_ * kBitsPerByte; } 50 uint8_t* end() const { return start() + size_; } 160 size_ = (region.size() + extra); 188 size_t size_; member in class:art::FINAL
|
H A D | dex_file.h | 132 uint32_t size_; member in struct:art::DexFile::MapItem 140 uint32_t size_; member in struct:art::DexFile::MapList 241 return size_; 245 DCHECK_LT(idx, this->size_); 260 uint32_t size_; // size of the list, in entries member in class:art::DexFile::TypeList 358 uint32_t size_; member in struct:art::DexFile::AnnotationSetRefList 366 uint32_t size_; member in struct:art::DexFile::AnnotationSetItem 892 return size_; 986 const size_t size_; member in class:art::DexFile 1067 : dex_file_(dex_file), size_( 1084 uint32_t size_; member in class:art::DexFileParameterIterator [all...] |
H A D | dex_file_verifier.h | 38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location), 116 const size_t size_; member in class:art::DexFileVerifier
|
H A D | mem_map.h | 114 return size_; 167 size_t size_; // Length of data. member in class:art::MemMap
|
H A D | dex_file_verifier.cc | 193 const uint8_t* file_end = file_start + size_; 236 if (size_ <= offset) { 237 ErrorStringPrintf("Offset(%d) should be within file size(%zu) for %s.", offset, size_, label); 246 if (size_ != expected_size) { 247 ErrorStringPrintf("Bad file size (%zd, expected %ud)", size_, expected_size); 297 uint32_t count = map->size_; 321 uint32_t icount = item->size_; 842 const uint8_t* file_end = begin_ + size_; 1264 if (UNLIKELY(aligned_offset > size_)) { 1350 uint32_t count = map->size_; [all...] |
H A D | mem_map.cc | 538 : name_(name), begin_(begin), size_(size), base_begin_(base_begin), base_size_(base_size), 540 if (size_ == 0) { 560 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_); 565 uint8_t* old_end = begin_ + size_; 572 size_ = new_end - reinterpret_cast<uint8_t*>(begin_); 574 DCHECK_LE(begin_ + size_, reinterpret_cast<uint8_t*>(base_begin_) + base_size_); 779 CHECK_EQ(base_size_, size_) << "Unsupported"; 784 size_ = new_size;
|
/art/runtime/gc/space/ |
H A D | large_object_space_test.cc | 119 id_(id), iterations_(iterations), size_(size), los_(los) {} 124 mirror::Object* ptr = los_->Alloc(self, size_, &alloc_size, nullptr, 140 size_t size_; member in class:art::gc::space::AllocRaceTask
|
H A D | bump_pointer_space.h | 185 size_t size_; // Size of the block in bytes, does not include the header. member in struct:art::gc::space::FINAL::BlockHeader
|
/art/compiler/utils/arm/ |
H A D | assembler_thumb2.h | 527 size_ = CalculateSize(); 535 size_ = CalculateSize(); 545 size_ = CalculateSize(); 557 if (size_ != newsize) { 558 size_ = newsize; 590 if (size_ != newsize) { 591 size_ = newsize; 598 return size_; 627 size_ = size; 681 Size size_; member in class:art::arm::FINAL::Branch [all...] |
/art/compiler/ |
H A D | elf_builder.h | 225 size_(size), code_output_(code_output) { 229 return size_; 241 Elf_Word size_; member in class:art::FINAL::FINAL 250 size_(size) { 254 return size_; 263 Elf_Word size_; member in class:art::FINAL::FINAL 337 sym.st_size = it.size_; 351 Elf_Word size_; member in struct:art::FINAL::FINAL::ElfSymbolState
|
H A D | oat_writer.h | 98 return size_; 270 size_t size_;
|
/art/runtime/verifier/ |
H A D | method_verifier.h | 109 PcToRegisterLineTable() : size_(0) {} 119 DCHECK_LT(idx, size_); 125 size_t size_; member in class:art::verifier::PcToRegisterLineTable
|
/art/compiler/optimizing/ |
H A D | optimizing_compiler.cc | 65 CodeVectorAllocator() : size_(0) {} 68 size_ = size; 73 size_t GetSize() const { return size_; } 78 size_t size_; member in class:art::FINAL
|