Searched refs:size_ (Results 1 - 25 of 37) sorted by relevance

12

/art/runtime/base/
H A Dbounded_fifo.h38 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 Darray_slice.h34 ArraySlice() : array_(nullptr), size_(0), element_size_(0) {}
42 size_(dchecked_integral_cast<uint32_t>(length)),
55 size_(end_offset - start_offset),
57 DCHECK(array_ != nullptr || size_ == 0);
59 if (size_ != 0) {
74 size_(end_offset - start_offset),
76 DCHECK(array != nullptr || size_ == 0);
77 if (size_ != 0) {
86 DCHECK_LT(index, size_);
91 DCHECK_LT(index, size_);
146 size_t size_; member in class:art::ArraySlice
[all...]
H A Dlength_prefixed_array.h34 : size_(dchecked_integral_cast<uint32_t>(length)) {}
37 DCHECK_LT(index, size_);
42 DCHECK_LT(index, size_);
56 return StrideIterator<T>(&AtUnchecked(size_, element_size, alignment), element_size);
61 return StrideIterator<const T>(&AtUnchecked(size_, element_size, alignment), element_size);
80 return size_;
85 size_ = dchecked_integral_cast<uint32_t>(length);
88 // Clear the potentially uninitialized padding between the size_ and actual data.
106 uint32_t size_; member in class:art::LengthPrefixedArray
H A Darena_allocator.h206 return memory_ + size_;
210 return size_;
229 size_t size_; member in class:art::Arena
/art/runtime/gc/collector/
H A Dimmune_region.h48 return reinterpret_cast<uintptr_t>(obj) - reinterpret_cast<uintptr_t>(begin_) < size_;
70 return size_;
75 size_ = reinterpret_cast<uintptr_t>(end_) - reinterpret_cast<uintptr_t>(begin_);
80 uintptr_t size_; member in class:art::gc::collector::ImmuneRegion
/art/compiler/utils/
H A Darray_ref.h61 : 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) {
84 : array_(v.data()), size_(v.size()) {
93 : array_(v.data()), size_(v.size()) {
102 size_ = other.size_;
119 iterator end() { return array_ + size_; }
120 const_iterator end() const { return array_ + size_; }
179 size_t size_; member in class:art::ArrayRef
[all...]
H A Dmanaged_register.h93 : 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 Dswap_space.cc63 size_(0),
139 int result = TEMP_FAILURE_RETRY(ftruncate64(fd_, size_ + next_part));
144 mmap(nullptr, next_part, PROT_READ | PROT_WRITE, MAP_SHARED, fd_, size_));
147 LOG(ERROR) << "Current size: " << size_ << " requested: " << next_part << "/" << min_size;
153 size_ += next_part;
H A Dswap_space.h42 return size_;
87 size_t size_; member in class:art::SwapSpace
/art/runtime/utils/
H A Ddex_cache_arrays_layout.h38 size_(0u) {
52 return size_;
103 const size_t size_; member in class:art::DexCacheArraysLayout
H A Ddex_cache_arrays_layout-inl.h40 size_(
/art/runtime/lambda/
H A Dclosure_builder.cc57 size_ += kObjectReferenceSize;
78 size_ += sizeof(Closure::captured_[0].dynamic_.size_);
82 size_ += closure->GetSize();
88 return size_;
118 closure->captured_[0].dynamic_.size_ = GetSize();
H A Dclosure_builder-inl.h37 size_ += sizeof(T);
H A Dclosure_builder.h95 size_t size_ = kInitialSize; member in class:art::lambda::ClosureBuilder
H A Dclosure.cc110 DCHECK_GE(static_closure_size, sizeof(captured_[0].dynamic_.size_));
111 const size_t dynamic_closure_size = captured_[0].dynamic_.size_;
395 closure + offsetof(Closure, captured_[0].dynamic_.size_),
397 static_assert(sizeof(dynamic_size) == sizeof(captured_[0].dynamic_.size_),
H A Dshorty_field_type_test.cc229 size_t size_ = sizeof(T); member in struct:art::lambda::ShortyTypeCharacteristics
241 EXPECT_EQ(size_, shorty.GetStaticSize());
338 chars.size_ = kObjectReferenceSize;
H A Dclosure.h170 size_t size_; // The lambda_info_ and the size_ itself is also included as part of the size. member in struct:art::lambda::__anon117::__anon118
175 // Set to [0] so that 'size_' is not counted in sizeof(Closure).
/art/runtime/
H A Dmemory_region.h38 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 Dimage.h46 ImageSection() : offset_(0), size_(0) { }
47 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { }
56 return size_;
64 return offset - offset_ < size_;
69 uint32_t size_; variable
H A Ddex_file.h147 uint32_t size_; member in struct:art::DexFile::MapItem
155 uint32_t size_; member in struct:art::DexFile::MapList
256 return size_;
260 DCHECK_LT(idx, this->size_);
275 uint32_t size_; // size of the list, in entries member in class:art::DexFile::TypeList
378 uint32_t size_; member in struct:art::DexFile::AnnotationSetRefList
386 uint32_t size_; member in struct:art::DexFile::AnnotationSetItem
737 DCHECK_LT(code_off, size_) << "Code item offset larger then maximum allowed offset";
827 if (code_item->debug_info_off_ == 0 || code_item->debug_info_off_ >= size_) {
957 DCHECK_LE(index, set_item->size_);
1238 const size_t size_; member in class:art::DexFile
1312 uint32_t size_; member in class:art::DexFileParameterIterator
[all...]
H A Dmem_map.h144 return size_;
222 size_t size_; // Length of data. member in class:art::MemMap
H A Ddex_file_verifier.h38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
177 const size_t size_; member in class:art::DexFileVerifier
/art/runtime/gc/space/
H A Dlarge_object_space_test.cc119 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
/art/runtime/gc/allocator/
H A Drosalloc.h144 SlotFreeList() : head_(0U), tail_(0), size_(0) {}
153 return size_;
184 --size_;
216 ++size_;
244 size_ = list->Size();
252 size_ += list->Size();
265 size_ = 0;
271 if (size_ == 0) {
288 CHECK_EQ(size_, count);
305 uint32_t size_; member in class:art::gc::allocator::RosAlloc::SlotFreeList
[all...]
/art/compiler/
H A Doat_writer.cc279 size_(0u),
432 size_ = offset;
443 size_t size_after_type_lookup_tables = size_;
487 uint32_t offset = size_;
504 size_ = offset;
508 size_t bss_start = RoundUp(size_, kPageSize);
1602 CHECK_EQ(size_, size_total);
1605 CHECK_EQ(file_offset + size_, static_cast<size_t>(oat_end_file_offset));
1606 CHECK_EQ(size_, relative_offset);
1723 size_ ## fiel
[all...]

Completed in 4184 milliseconds

12