Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc190 native_bytes_allocated_(0), in Heap()
3520 size_t native_size = native_bytes_allocated_.LoadRelaxed(); in UpdateMaxNativeFootprint()
3882 …size_t new_native_bytes_allocated = native_bytes_allocated_.FetchAndAddSequentiallyConsistent(byte… in RegisterNativeAllocation()
3896 new_native_bytes_allocated = native_bytes_allocated_.LoadRelaxed(); in RegisterNativeAllocation()
3925 expected_size = native_bytes_allocated_.LoadRelaxed(); in RegisterNativeFree()
3933 } while (!native_bytes_allocated_.CompareExchangeWeakRelaxed(expected_size, in RegisterNativeFree()
Dheap.h1158 Atomic<size_t> native_bytes_allocated_; variable