Home
last modified time | relevance | path

Searched refs:AVAILABLE_NON_COMPRESSED_MEMORY (Results 1 – 4 of 4) sorted by relevance

/xnu-11215.1.10/osfmk/vm/
H A Dvm_compressor_xnu.h426 #define AVAILABLE_NON_COMPRESSED_MEMORY (vm_page_active_count + vm_page_inactive_count + vm… macro
427 #define AVAILABLE_MEMORY (AVAILABLE_NON_COMPRESSED_MEMORY + VM_PAGE_COMPRESS…
450 #define COMPRESSOR_NEEDS_TO_SWAP() (((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRE…
451 … (AVAILABLE_NON_COMPRESSED_MEMORY < AVAILABLE_NON_COMPRESSED_MIN)) ? 1 : 0)
453 #define COMPRESSOR_NEEDS_TO_SWAP() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
456 #define HARD_THROTTLE_LIMIT_REACHED() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
457 #define SWAPPER_NEEDS_TO_UNTHROTTLE() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
458 #define SWAPPER_NEEDS_TO_RETHROTTLE() ((AVAILABLE_NON_COMPRESSED_MEMORY > VM_PAGE_COMPRES…
459 #define SWAPPER_NEEDS_TO_CATCHUP() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
460 #define SWAPPER_HAS_CAUGHTUP() ((AVAILABLE_NON_COMPRESSED_MEMORY > VM_PAGE_COMPRES…
H A Dvm_pageout.c2209 ((AVAILABLE_NON_COMPRESSED_MEMORY) * 10) / divisor;
2219 ((AVAILABLE_NON_COMPRESSED_MEMORY) * 10) / divisor;
4711 available_memory = (uint64_t) AVAILABLE_NON_COMPRESSED_MEMORY;
4712 memorystatus_available_pages = (uint64_t) AVAILABLE_NON_COMPRESSED_MEMORY;
5731 vm_page_pageable_external_count > (AVAILABLE_NON_COMPRESSED_MEMORY * 6) / 10) {
10063 return (AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRESSOR_COMPACT_THRESHOLD) ? 1 : 0;
10077 …return vm_compressor_low_on_space() || (AVAILABLE_NON_COMPRESSED_MEMORY < ((12 * VM_PAGE_COMPRESSO…
10095 …return (AVAILABLE_NON_COMPRESSED_MEMORY > ((12 * VM_PAGE_COMPRESSOR_COMPACT_THRESHOLD) / 10)) ? 1 …
10110 …return (AVAILABLE_NON_COMPRESSED_MEMORY > ((14 * VM_PAGE_COMPRESSOR_SWAP_UNTHROTTLE_THRESHOLD) / 1…
H A Dvm_compressor.c463 bool is_pressured = AVAILABLE_NON_COMPRESSED_MEMORY < in vm_compressor_needs_to_minor_compact()
482 return ((uint64_t)AVAILABLE_NON_COMPRESSED_MEMORY) * PAGE_SIZE_64; in vm_available_memory()
/xnu-11215.1.10/doc/vm/
H A Dmemorystatus_notify.md44 AVAILABLE_NON_COMPRESSED_MEMORY = (active + inactive + free + speculative)
45 AVAILABLE_MEMORY = (AVAILABLE_NON_COMPRESSED_MEMORY + compressed)
48 In other words, `AVAILABLE_NON_COMPRESSED_MEMORY` tracks all of the memory on
57 Pressure states are triggered when `AVAILABLE_NON_COMPRESSED_MEMORY` dips
83 This available page count is the subset of `AVAILABLE_NON_COMPRESSED_MEMORY`