Lines Matching refs:remainder
144 …FreePageRun* remainder = reinterpret_cast<FreePageRun*>(reinterpret_cast<uint8_t*>(fpr) + req_byte… in AllocPages() local
146 remainder->magic_num_ = kMagicNumFree; in AllocPages()
148 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()
149 DCHECK_EQ(remainder->ByteSize(this) % kPageSize, static_cast<size_t>(0)); in AllocPages()
151 free_page_runs_.insert(remainder); in AllocPages()
154 << reinterpret_cast<intptr_t>(remainder) in AllocPages()
242 …FreePageRun* remainder = reinterpret_cast<FreePageRun*>(reinterpret_cast<uint8_t*>(fpr) + req_byte… in AllocPages() local
244 remainder->magic_num_ = kMagicNumFree; in AllocPages()
246 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()
247 DCHECK_EQ(remainder->ByteSize(this) % kPageSize, static_cast<size_t>(0)); in AllocPages()
248 free_page_runs_.insert(remainder); in AllocPages()
251 << reinterpret_cast<intptr_t>(remainder) in AllocPages()