Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc3902 inline float Heap::NativeMemoryOverTarget(size_t current_native_bytes, bool is_gc_concurrent) { in NativeMemoryOverTarget() argument
3908 if (old_native_bytes > current_native_bytes) { in NativeMemoryOverTarget()
3911 old_native_bytes_allocated_.store(current_native_bytes, std::memory_order_relaxed); in NativeMemoryOverTarget()
3914 size_t new_native_bytes = UnsignedDifference(current_native_bytes, old_native_bytes); in NativeMemoryOverTarget()
3931 size_t current_native_bytes = GetNativeBytes(); in CheckGCForNative() local
3932 float gc_urgency = NativeMemoryOverTarget(current_native_bytes, is_gc_concurrent); in CheckGCForNative()
3937 && current_native_bytes > stop_for_native_allocs_) { in CheckGCForNative()
Dheap.h995 float NativeMemoryOverTarget(size_t current_native_bytes, bool is_gc_concurrent);