Home
last modified time | relevance | path

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

/xnu-12377.61.12/osfmk/vm/
H A Dvm_compressor.c1383 if (c_seg->c_firstemptyslot < c_seg->c_nextslot) { in c_seg_validate()
1384 c_indx = c_seg->c_firstemptyslot; in c_seg_validate()
2184 if (c_seg->c_firstemptyslot > c_seg->c_nextslot) { in c_seg_trim_tail()
2185 c_seg->c_firstemptyslot = c_seg->c_nextslot; in c_seg_trim_tail()
2232 if (c_seg->c_firstemptyslot >= c_seg->c_nextslot || C_SEG_UNUSED_BYTES(c_seg) < PAGE_SIZE) { in c_seg_minor_compaction_and_unlock()
2245 c_indx = c_seg->c_firstemptyslot; in c_seg_minor_compaction_and_unlock()
2280 c_seg->c_firstemptyslot = c_indx; in c_seg_minor_compaction_and_unlock()
2513 if (c_seg_dst->c_firstemptyslot == c_seg_dst->c_nextslot) { in c_seg_coalesce()
2514 c_seg_dst->c_firstemptyslot++; in c_seg_coalesce()
2528 c_seg_src->c_firstemptyslot = 0; in c_seg_coalesce()
[all …]
H A Dvm_compressor_xnu.h227 …uint16_t c_firstemptyslot; /* index of lowest empty slot. used for instance in minor compa… member