Searched refs:c_seg (Results 1 – 6 of 6) sorted by relevance
| /xnu-8792.61.2/osfmk/vm/ |
| H A D | vm_compressor.c | 215 c_segment_t c_seg; member 400 void c_seg_try_minor_compaction_and_unlock(c_segment_t c_seg); 555 c_segment_t c_seg; in vm_compressor_is_thrashing() local 560 c_seg = (c_segment_t) queue_first(&c_age_list_head); in vm_compressor_is_thrashing() 562 if (c_seg->c_creation_ts > swapout_target_age) { in vm_compressor_is_thrashing() 1235 c_seg_validate(c_segment_t c_seg, boolean_t must_be_compact) in c_seg_validate() argument 1246 if (c_seg->c_firstemptyslot < c_seg->c_nextslot) { in c_seg_validate() 1247 c_indx = c_seg->c_firstemptyslot; in c_seg_validate() 1248 cs = C_SEG_SLOT_FROM_INDEX(c_seg, c_indx); in c_seg_validate() 1260 for (c_indx = 0; c_indx < c_seg->c_nextslot; c_indx++) { in c_seg_validate() [all …]
|
| H A D | vm_compressor_backing_store.c | 129 static void vm_swapout_finish(c_segment_t c_seg, uint64_t f_offset, uint32_t size, kern_return_t kr… 356 vm_swap_encrypt(c_segment_t c_seg) in vm_swap_encrypt() argument 369 C_SEG_MAKE_WRITEABLE(c_seg); in vm_swap_encrypt() 371 ptr = (uint8_t *)c_seg->c_store.c_buffer; in vm_swap_encrypt() 372 size = round_page_32(C_SEG_OFFSET_TO_BYTES(c_seg->c_populated_offset)); in vm_swap_encrypt() 374 ivnum[0] = (uint64_t)c_seg; in vm_swap_encrypt() 384 C_SEG_WRITE_PROTECT(c_seg); in vm_swap_encrypt() 389 vm_swap_decrypt(c_segment_t c_seg) in vm_swap_decrypt() argument 400 C_SEG_MAKE_WRITEABLE(c_seg); in vm_swap_decrypt() 402 ptr = (uint8_t *)c_seg->c_store.c_buffer; in vm_swap_decrypt() [all …]
|
| H A D | analytics.c | 163 c_segment_t c_seg = (c_segment_t) queue_first(c_queues[q]); in report_compressor_age() local 164 while (!queue_end(c_queues[q], (queue_entry_t) c_seg)) { in report_compressor_age() 166 uint32_t creation_ts = c_seg->c_creation_ts; in report_compressor_age() 175 c_seg = (c_segment_t) queue_next(&c_seg->c_age_list); in report_compressor_age()
|
| H A D | vm_compressor.h | 299 …((((cseg->c_bytes_unused + (c_seg_bufsize - C_SEG_OFFSET_TO_BYTES(c_seg->c_nextoffset))) >= (c_seg…
|
| /xnu-8792.61.2/tools/lldbmacros/ |
| H A D | memory.py | 4680 c_seg = c_segments_elt.c_seg 4682 if hasattr(c_seg, 'c_state'): 4683 c_state = c_seg.c_state 4714 …_seg {: <#018x} c_state {:#x}={:s}".format(slot.s_cseg-1, c_segments_elt, c_seg, c_state, c_state_… 4716 if hasattr(c_seg, 'c_slot_var_array'): 4719 cs = c_seg.c_slot_fixed_array[c_indx] 4721 cs = GetObjectAtIndexFromArray(c_seg.c_slot_var_array, c_indx - c_seg_fixed_array_len) 4725 …cs = GetObjectAtIndexFromArray(c_seg.c_slots[c_indx // C_SEG_SLOT_ARRAY_SIZE], c_indx & C_SEG_SLOT… 4732 c_data = c_seg.c_store.c_buffer + (4 * cs.c_offset)
|
| /xnu-8792.61.2/tests/ |
| H A D | stackshot_tests.m | 2969 T_QUIET; T_ASSERT_TRUE(found_cseg_waitinfo, "found c_seg waitinfo");
|