Home
last modified time | relevance | path

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

/art/runtime/gc/allocator/
Drosalloc.cc144 …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()
[all …]
/art/tools/
Dcpplint.py3526 remainder = line[match.end(0):]
3540 function_match = Match(r'\s*(\)|=|(const)?\s*(;|\{|throw\(\)|>))', remainder)