Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc132 size_t fpr_byte_size = fpr->ByteSize(this); in AllocPages() local
133 DCHECK_EQ(fpr_byte_size % kPageSize, static_cast<size_t>(0)); in AllocPages()
134 if (req_byte_size <= fpr_byte_size) { in AllocPages()
142 if (req_byte_size < fpr_byte_size) { in AllocPages()
148 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()
232 size_t fpr_byte_size = fpr->ByteSize(this); in AllocPages() local
233 DCHECK_EQ(fpr_byte_size % kPageSize, static_cast<size_t>(0)); in AllocPages()
234 DCHECK_LE(req_byte_size, fpr_byte_size); in AllocPages()
240 if (req_byte_size < fpr_byte_size) { in AllocPages()
246 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()