Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc124 size_t fpr_byte_size = fpr->ByteSize(this); in AllocPages() local
125 DCHECK_EQ(fpr_byte_size % kPageSize, static_cast<size_t>(0)); in AllocPages()
126 if (req_byte_size <= fpr_byte_size) { in AllocPages()
134 if (req_byte_size < fpr_byte_size) { in AllocPages()
140 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()
224 size_t fpr_byte_size = fpr->ByteSize(this); in AllocPages() local
225 DCHECK_EQ(fpr_byte_size % kPageSize, static_cast<size_t>(0)); in AllocPages()
226 DCHECK_LE(req_byte_size, fpr_byte_size); in AllocPages()
232 if (req_byte_size < fpr_byte_size) { in AllocPages()
238 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()