Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc139 size_t fpr_byte_size = fpr->ByteSize(this); in AllocPages() local
140 DCHECK_EQ(fpr_byte_size % kPageSize, static_cast<size_t>(0)); in AllocPages()
141 if (req_byte_size <= fpr_byte_size) { in AllocPages()
149 if (req_byte_size < fpr_byte_size) { in AllocPages()
156 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()
240 size_t fpr_byte_size = fpr->ByteSize(this); in AllocPages() local
241 DCHECK_EQ(fpr_byte_size % kPageSize, static_cast<size_t>(0)); in AllocPages()
242 DCHECK_LE(req_byte_size, fpr_byte_size); in AllocPages()
248 if (req_byte_size < fpr_byte_size) { in AllocPages()
254 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()