Searched refs:c_indx (Results 1 – 2 of 2) sorted by relevance
| /xnu-8019.80.24/osfmk/vm/ |
| H A D | vm_compressor.c | 1021 uint16_t c_indx; in c_seg_validate() local 1031 c_indx = c_seg->c_firstemptyslot; in c_seg_validate() 1032 cs = C_SEG_SLOT_FROM_INDEX(c_seg, c_indx); in c_seg_validate() 1044 for (c_indx = 0; c_indx < c_seg->c_nextslot; c_indx++) { in c_seg_validate() 1045 cs = C_SEG_SLOT_FROM_INDEX(c_seg, c_indx); in c_seg_validate() 1057 …p phys: 0x%llx %d %p %d %d 0x%x 0x%x", c_seg, csvphys, cs->c_offset, cs, c_indx, c_size, cs->c_has… in c_seg_validate() 1779 uint16_t c_indx = 0; in c_seg_minor_compaction_and_unlock() local 1808 c_indx = c_seg->c_firstemptyslot; in c_seg_minor_compaction_and_unlock() 1809 c_dst = C_SEG_SLOT_FROM_INDEX(c_seg, c_indx); in c_seg_minor_compaction_and_unlock() 1814 for (i = c_indx + 1; i < c_seg->c_nextslot && c_offset < c_seg->c_nextoffset; i++) { in c_seg_minor_compaction_and_unlock() [all …]
|
| /xnu-8019.80.24/tools/lldbmacros/ |
| H A D | memory.py | 5015 c_indx = unsigned(slot.s_cindx) 5018 if c_indx < c_seg_fixed_array_len: 5019 cs = c_seg.c_slot_fixed_array[c_indx] 5021 cs = GetObjectAtIndexFromArray(c_seg.c_slot_var_array, c_indx - c_seg_fixed_array_len) 5025 …cs = GetObjectAtIndexFromArray(c_seg.c_slots[c_indx / C_SEG_SLOT_ARRAY_SIZE], c_indx & C_SEG_SLOT_…
|