Home
last modified time | relevance | path

Searched refs:compressed (Results 1 – 14 of 14) sorted by relevance

/xnu-11215/doc/vm/
H A Dmemorystatus_notify.md45 AVAILABLE_MEMORY = (AVAILABLE_NON_COMPRESSED_MEMORY + compressed)
50 wired, compressed, or stolen). `AVAILABLE_MEMORY` tracks all memory that
51 is reclaimable, free, or being used to store compressed anonymous memory (i.e.
69 …LE_MEMORY` | `0.5 * AVAILABLE_MEMORY` | Initiate minor-compaction of compressed segments. …
70 …_MEMORY` | `0.4 * AVAILABLE_MEMORY` | Begin major-compaction & swapping of compressed segments. |
107 When the compressor has exhausted its available space (VA or compressed-pages
H A Dfreezer.md19compressed into a new set of freezer segments hanging off the `freezer_ctx_chead`. If any already
70 Note that `vm_map_freeze` does **not** read data back in from NAND. It will copy compressed memory …
H A Dmemorystatus_kills.md94 The compressor is at or near either the segment or compressed pages limit. See `vm_compressor_low_o…
/xnu-11215/osfmk/arm64/
H A Dhibernate_secure_hmac.h72 void *compressed);
/xnu-11215/iokit/Kernel/
H A DIOHibernateIO.cpp1658 uint8_t * compressed; in hibernate_write_image() local
2010 compressed = src + page_size; in hibernate_write_image()
2011 scratch = compressed + page_size; in hibernate_write_image()
2113 (WK_word*) compressed, in hibernate_write_image()
2135 data = compressed; in hibernate_write_image()
2565 uint8_t * compressed = src + page_size; in hibernate_machine_init() local
2566 uint8_t * scratch = compressed + page_size; in hibernate_machine_init()
2661 d = (uint32_t *)(uintptr_t)compressed; in hibernate_machine_init()
2667 pal_hib_decompress_page(src, compressed, scratch, ((unsigned int) compressedSize)); in hibernate_machine_init()
/xnu-11215/osfmk/mach/
H A Dtask_info.h383 mach_vm_size_t compressed; member
/xnu-11215/bsd/kern/
H A Dkern_proc.c4508 uint64_t compressed; in proc_pcontrol_filter() local
4512 compressed = get_task_compressed(proc_task(p)); in proc_pcontrol_filter()
4516 if (compressed > nps->pcs_max_size) { in proc_pcontrol_filter()
4519 nps->pcs_max_size = compressed; in proc_pcontrol_filter()
4521 nps->pcs_total_size += compressed; in proc_pcontrol_filter()
4524 nps->apcs_total_size += compressed; in proc_pcontrol_filter()
4528 if (compressed > nps->npcs_max_size) { in proc_pcontrol_filter()
4531 nps->npcs_max_size = compressed; in proc_pcontrol_filter()
4533 nps->npcs_total_size += compressed; in proc_pcontrol_filter()
/xnu-11215/tests/
H A Dstackshot_tests.m286 T_DECL(simple_compressed, "take a simple compressed stackshot", T_META_TAG_VM_PREFERRED)
294 T_LOG("taking compressed kcdata stackshot");
300 T_DECL(panic_compressed, "take a compressed stackshot with the same flags as a panic stackshot", T_…
320 T_LOG("taking compressed kcdata stackshot with panic flags");
1499 …// L0-L2 table and non-compressed L3 block entries should always have bit 1 set; assumes L0-L2 blo…
1503 } else { // should be a compressed PTE
2930 /* we are dealing with a compressed buffer */
2950 T_ASSERT_GT(totalout, UINT64_C(0), "successfully gathered how long the compressed buffer is");
2954 T_ASSERT_EQ(kcdata_iter_type(iter), KCDATA_BUFFER_BEGIN_STACKSHOT, "compressed stackshot found");
2980 /* copy the data after the compressed area */
[all …]
/xnu-11215/doc/lifecycle/
H A Dhibernation.md125 * Each wired page is compressed and written and then each non-wired page.
176 still compressed in the image.
/xnu-11215/tools/lldbmacros/
H A Dmemory.py1342 self.compressed = 0
1357 if self.compressed < 0:
1384 self.compressed += other.compressed
1449 …vmstats.compressed = GetLedgerEntryBalancePages(ledger_template, task_ledgerp, entry_indices['inte…
/xnu-11215/osfmk/vm/
H A Dvm_compressor.c618 ledger_amount_t compressed; in vm_wants_task_throttled() local
625 ledger_get_balance(task->ledger, task_ledgers.internal_compressed, &compressed); in vm_wants_task_throttled()
626 compressed >>= VM_MAP_PAGE_SHIFT(task->map); in vm_wants_task_throttled()
627 if ((unsigned int)compressed > (c_segment_pages_compressed / 4)) { in vm_wants_task_throttled()
/xnu-11215/makedefs/
H A DMakeInc.def719 # Availability of DWARF allows DTrace CTF (compressed type format) to be constructed.
/xnu-11215/osfmk/arm64/sptm/pmap/
H A Dpmap.c619 …const bool compressed = (((pte & ARM_PTE_TYPE_VALID) == ARM_PTE_TYPE_FAULT) && (pte & ARM_PTE_COMP… in pte_is_compressed() local
626 if (__improbable(compressed && (pte & ~(ARM_PTE_COMPRESSED_MASK | SPTM_PTE_IN_FLIGHT_MARKER)))) { in pte_is_compressed()
630 return compressed; in pte_is_compressed()
/xnu-11215/osfmk/kern/
H A Dtask.c5921 …t_balance(task->ledger, task_ledgers.internal_compressed, (ledger_amount_t*) &vm_info->compressed); in task_info()
5968 vm_info->compressed -= in task_info()