Home
last modified time | relevance | path

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

/aosp12/bionic/libc/bionic/
H A Datexit.cpp139 size_t new_bytes = page_end_of_index(dst); in recompact() local
140 if (new_bytes < old_bytes) { in recompact()
141 madvise(reinterpret_cast<char*>(array_) + new_bytes, old_bytes - new_bytes, MADV_DONTNEED); in recompact()
/aosp12/art/libartbase/base/
H A Dallocator.h90 size_t new_bytes = g_bytes_used[tag].fetch_add(bytes, std::memory_order_relaxed) + bytes; in RegisterAllocation() local
92 while (max_bytes < new_bytes in RegisterAllocation()
93 && !g_max_bytes_used[tag].compare_exchange_weak(max_bytes /* updated */, new_bytes, in RegisterAllocation()
/aosp12/art/runtime/gc/accounting/
H A Dcard_table-inl.h182 uint8_t new_bytes[sizeof(uintptr_t)]; in ModifyCardsAtomic() member
194 new_bytes[i] = visitor(expected_bytes[i]); in ModifyCardsAtomic()
200 const uint8_t new_byte = new_bytes[i]; in ModifyCardsAtomic()