Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc3954 inline float Heap::NativeMemoryOverTarget(size_t current_native_bytes, bool is_gc_concurrent) { in NativeMemoryOverTarget() argument
3960 if (old_native_bytes > current_native_bytes) { in NativeMemoryOverTarget()
3963 old_native_bytes_allocated_.store(current_native_bytes, std::memory_order_relaxed); in NativeMemoryOverTarget()
3966 size_t new_native_bytes = UnsignedDifference(current_native_bytes, old_native_bytes); in NativeMemoryOverTarget()
3984 size_t current_native_bytes = GetNativeBytes(); in CheckGCForNative() local
3985 float gc_urgency = NativeMemoryOverTarget(current_native_bytes, is_gc_concurrent); in CheckGCForNative()
3991 && current_native_bytes > stop_for_native_allocs_) { in CheckGCForNative()
Dheap.h1030 float NativeMemoryOverTarget(size_t current_native_bytes, bool is_gc_concurrent);