Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc4189 inline float Heap::NativeMemoryOverTarget(size_t current_native_bytes, bool is_gc_concurrent) { in NativeMemoryOverTarget() argument
4195 if (old_native_bytes > current_native_bytes) { in NativeMemoryOverTarget()
4198 old_native_bytes_allocated_.store(current_native_bytes, std::memory_order_relaxed); in NativeMemoryOverTarget()
4201 size_t new_native_bytes = UnsignedDifference(current_native_bytes, old_native_bytes); in NativeMemoryOverTarget()
4219 size_t current_native_bytes = GetNativeBytes(); in CheckGCForNative() local
4220 float gc_urgency = NativeMemoryOverTarget(current_native_bytes, is_gc_concurrent); in CheckGCForNative()
4226 && current_native_bytes > stop_for_native_allocs_) { in CheckGCForNative()
Dheap.h1092 float NativeMemoryOverTarget(size_t current_native_bytes, bool is_gc_concurrent);