Searched refs:cnt_dst (Results 1 – 2 of 2) sorted by relevance
| /xnu-12377.81.4/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-12377.81.4/osfmk/kdp/ml/arm/ |
| H A D | kdp_vm.c | 183 mach_vm_size_t cnt = 0, cnt_src, cnt_dst; in kdp_machine_phys_read() local 200 cnt_dst = ARM_PGBYTES - (cur_phys_dst & PAGE_MASK); in kdp_machine_phys_read() 201 if (cnt_src > cnt_dst) { in kdp_machine_phys_read() 202 cnt = cnt_dst; in kdp_machine_phys_read() 228 mach_vm_size_t resid, cnt, cnt_src, cnt_dst; in kdp_machine_vm_write() local 255 cnt_dst = ((cur_phys_dst + ARM_PGBYTES) & (-ARM_PGBYTES)) - cur_phys_dst; in kdp_machine_vm_write() 257 if (cnt_src > cnt_dst) { in kdp_machine_vm_write() 258 cnt = cnt_dst; in kdp_machine_vm_write()
|