Home
last modified time | relevance | path

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

/xnu-11417.140.69/osfmk/vm/
H A Dvm_compressor_xnu.h456 #define COMPRESSOR_NEEDS_TO_SWAP() (((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRE…
457 … (AVAILABLE_NON_COMPRESSED_MEMORY < AVAILABLE_NON_COMPRESSED_MIN)) ? 1 : 0)
459 #define COMPRESSOR_NEEDS_TO_SWAP() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
462 #define HARD_THROTTLE_LIMIT_REACHED() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
463 #define SWAPPER_NEEDS_TO_UNTHROTTLE() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
464 #define SWAPPER_NEEDS_TO_RETHROTTLE() ((AVAILABLE_NON_COMPRESSED_MEMORY > VM_PAGE_COMPRES…
465 #define SWAPPER_NEEDS_TO_CATCHUP() ((AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRES…
466 #define SWAPPER_HAS_CAUGHTUP() ((AVAILABLE_NON_COMPRESSED_MEMORY > VM_PAGE_COMPRES…
H A Dvm_page.h1519 #define AVAILABLE_NON_COMPRESSED_MEMORY (vm_page_active_count + vm_page_inactive_count + vm… macro
1520 #define AVAILABLE_MEMORY (AVAILABLE_NON_COMPRESSED_MEMORY + VM_PAGE_COMPRESS…
1540 …ine VM_CHECK_MEMORYSTATUS memorystatus_update_available_page_count(AVAILABLE_NON_COMPRESSED_MEMORY)
H A Dvm_pageout.c2202 ((AVAILABLE_NON_COMPRESSED_MEMORY) * 10) / divisor;
2212 ((AVAILABLE_NON_COMPRESSED_MEMORY) * 10) / divisor;
3821 memorystatus_update_available_page_count(AVAILABLE_NON_COMPRESSED_MEMORY);
5723 vm_page_pageable_external_count > (AVAILABLE_NON_COMPRESSED_MEMORY * 6) / 10) {
10031 return (AVAILABLE_NON_COMPRESSED_MEMORY < VM_PAGE_COMPRESSOR_COMPACT_THRESHOLD) ? 1 : 0;
10043 …return vm_compressor_low_on_space() || (AVAILABLE_NON_COMPRESSED_MEMORY < ((12 * VM_PAGE_COMPRESSO…
10059 …return (AVAILABLE_NON_COMPRESSED_MEMORY > ((12 * VM_PAGE_COMPRESSOR_COMPACT_THRESHOLD) / 10)) ? 1 …
10071 …return (AVAILABLE_NON_COMPRESSED_MEMORY > ((14 * VM_PAGE_COMPRESSOR_SWAP_UNTHROTTLE_THRESHOLD) / 1…
H A Dvm_compressor.c476 bool is_pressured = AVAILABLE_NON_COMPRESSED_MEMORY < in vm_compressor_needs_to_minor_compact()
495 return ((uint64_t)AVAILABLE_NON_COMPRESSED_MEMORY) * PAGE_SIZE_64; in vm_available_memory()
/xnu-11417.140.69/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`