Searched refs:cnt_dst (Results 1 – 2 of 2) sorted by relevance
| /xnu-8019.80.24/osfmk/kdp/ml/i386/ |
| H A D | kdp_x86_common.c | 95 mach_vm_size_t cnt = 0, cnt_src, cnt_dst; in kdp_machine_vm_read() local 140 cnt_dst = PAGE_SIZE - (cur_phys_dst & PAGE_MASK); in kdp_machine_vm_read() 141 if (cnt_src > cnt_dst) { in kdp_machine_vm_read() 142 cnt = cnt_dst; in kdp_machine_vm_read() 174 mach_vm_size_t cnt = 0, cnt_src, cnt_dst; in kdp_machine_phys_read() local 195 cnt_dst = PAGE_SIZE - (cur_phys_dst & PAGE_MASK); in kdp_machine_phys_read() 196 if (cnt_src > cnt_dst) { in kdp_machine_phys_read() 197 cnt = cnt_dst; in kdp_machine_phys_read() 229 unsigned resid, cnt, cnt_src, cnt_dst; in kdp_machine_vm_write() local 251 cnt_dst = (unsigned)(PAGE_SIZE - (cur_phys_dst & PAGE_MASK)); in kdp_machine_vm_write() [all …]
|
| /xnu-8019.80.24/osfmk/kdp/ml/arm/ |
| H A D | kdp_vm.c | 175 mach_vm_size_t cnt = 0, cnt_src, cnt_dst; in kdp_machine_phys_read() local 192 cnt_dst = ARM_PGBYTES - (cur_phys_dst & PAGE_MASK); in kdp_machine_phys_read() 193 if (cnt_src > cnt_dst) { in kdp_machine_phys_read() 194 cnt = cnt_dst; in kdp_machine_phys_read() 220 mach_vm_size_t resid, cnt, cnt_src, cnt_dst; in kdp_machine_vm_write() local 247 cnt_dst = ((cur_phys_dst + ARM_PGBYTES) & (-ARM_PGBYTES)) - cur_phys_dst; in kdp_machine_vm_write() 249 if (cnt_src > cnt_dst) { in kdp_machine_vm_write() 250 cnt = cnt_dst; in kdp_machine_vm_write()
|