Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc136 …FreePageRun* remainder = reinterpret_cast<FreePageRun*>(reinterpret_cast<uint8_t*>(fpr) + req_byte… in AllocPages() local
138 remainder->magic_num_ = kMagicNumFree; in AllocPages()
140 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()
141 DCHECK_EQ(remainder->ByteSize(this) % kPageSize, static_cast<size_t>(0)); in AllocPages()
143 free_page_runs_.insert(remainder); in AllocPages()
146 << reinterpret_cast<intptr_t>(remainder) in AllocPages()
234 …FreePageRun* remainder = reinterpret_cast<FreePageRun*>(reinterpret_cast<uint8_t*>(fpr) + req_byte… in AllocPages() local
236 remainder->magic_num_ = kMagicNumFree; in AllocPages()
238 remainder->SetByteSize(this, fpr_byte_size - req_byte_size); in AllocPages()
239 DCHECK_EQ(remainder->ByteSize(this) % kPageSize, static_cast<size_t>(0)); in AllocPages()
[all …]
/art/tools/
Dcpplint.py3500 remainder = line[match.end(0):]
3514 function_match = Match(r'\s*(\)|=|(const)?\s*(;|\{|throw\(\)|>))', remainder)