Home
last modified time | relevance | path

Searched refs:block_size (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/space/
Dbump_pointer_space-walk-inl.h80 size_t block_size = header->size_; in Walk() local
83 const mirror::Object* end_obj = reinterpret_cast<const mirror::Object*>(pos + block_size); in Walk()
92 pos += block_size; in Walk()
/art/libdexfile/dex/
Dcompact_offset_table.cc98 const size_t block_size = std::min(offsets.size() - block_start, kElementsPerIndex); in Build() local
102 for (size_t i = 0; i < block_size; ++i) { in Build()
113 for (size_t i = 0; i < block_size; ++i) { in Build()
122 block_start += block_size; in Build()
/art/libelffile/elf/
Dxz_utils.h32 size_t block_size = kXzDefaultBlockSize);
Dxz_utils.cc46 size_t block_size) { in XzCompress() argument
53 lzma2Props.blockSize = block_size; in XzCompress()
/art/runtime/mirror/
Dstring-alloc-inl.h165 const size_t block_size = (compressible) ? sizeof(uint8_t) : sizeof(uint16_t); in Alloc() local
169 size_t data_size = block_size * length; in Alloc()
180 const size_t overflow_length = (-header_size) / block_size; // Unsigned arithmetic. in Alloc()
184 const size_t max_length = RoundDown(max_alloc_length, kObjectAlignment / block_size); in Alloc()