Home
last modified time | relevance | path

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

/xnu-8020.101.4/osfmk/vm/
H A Dvm_compressor_backing_store.c93 …uint8_t *swp_bitmap; /* bitmap showing the alloced/freed slots in the swap file… member
1422 swf->swp_bitmap = kalloc_data(num_bytes_for_bitmap, in vm_swap_create_file()
1590 if ((swf->swp_bitmap)[byte_for_segidx] & (1 << offset_within_byte)) { in vm_swap_put()
1595 (swf->swp_bitmap)[byte_for_segidx] |= (1 << offset_within_byte); in vm_swap_put()
1742 if ((swf->swp_bitmap)[byte_for_segidx] & (1 << offset_within_byte)) { in vm_swap_free_now()
1743 (swf->swp_bitmap)[byte_for_segidx] &= ~(1 << offset_within_byte); in vm_swap_free_now()
1924 if ((swf->swp_bitmap)[byte_for_segidx] & (1 << offset_within_byte)) { in vm_swap_do_delayed_trim()
1925 (swf->swp_bitmap)[byte_for_segidx] &= ~(1 << offset_within_byte); in vm_swap_do_delayed_trim()
2042 if (((swf->swp_bitmap)[byte_for_segidx] & (1 << offset_within_byte)) == 0) { in vm_swap_reclaim()
2075 (swf->swp_bitmap)[byte_for_segidx] &= ~(1 << offset_within_byte); in vm_swap_reclaim()
[all …]