Searched refs:csize (Results 1 - 5 of 5) sorted by relevance

/xnu-2782.1.97/osfmk/x86_64/
H A Dcopyio.c232 copyio_phys(addr64_t source, addr64_t sink, vm_size_t csize, int which) argument
247 return copyio(ctype, vaddr, paddr, csize, NULL, which & cppvKmap);
286 unsigned int lop, csize; local
316 csize = size; /* Assume we can copy it all */
318 csize = lop; /* Nope, we can't do it all */
328 flush_dcache64(src64, csize, 1); /* If requested, flush source before move */
330 flush_dcache64(snk64, csize, 1); /* If requested, flush sink before move */
333 bcopy_phys(src64, snk64, csize); /* Do a physical copy, virtually */
335 if (copyio_phys(src64, snk64, csize, which))
340 flush_dcache64(src64, csize,
[all...]
/xnu-2782.1.97/bsd/dev/
H A Dmemdev.c236 unsigned int left, lop, csize; local
289 csize = min(lop, left); /* Don't move more than we need to */
296 bcopy_phys(fvaddr, paddr, csize); /* Copy this on in */
299 left = left - csize; /* Calculate what is left */
300 vaddr = vaddr + csize; /* Move to next sink address */
301 fvaddr = fvaddr + csize; /* Bump to next physical address */
315 csize = min(lop, left); /* Don't move more than we need to */
323 bcopy_phys(paddr, fvaddr, csize); /* Move this on out */
325 left = left - csize; /* Calculate what is left */
326 vaddr = vaddr + csize; /* Mov
[all...]
/xnu-2782.1.97/tools/lldbmacros/
H A Dmbufs.py376 csize = unsigned(kern.globals.mbuf_table[mca_class].mtbl_stats.mbcl_size)
379 if (csize == MSIZE):
385 if (csize == MCLBYTES):
391 if (csize == NBPG):
397 if (csize == M16KCLBYTES):
404 if (csize == (MSIZE + MCLBYTES)):
425 if (csize == (MSIZE + NBPG)):
446 if (csize == (MSIZE + M16KCLBYTES)):
H A Dmemory.py2088 nonvolatile_total.csize = 0
2107 print " all objects:{:<10d} [ virtual:{:<10d} resident:{:<10d} wired:{:<10d} compressed:{:<10d} ]\n".format(nonvolatile_total.objects, nonvolatile_total.vsize, nonvolatile_total.rsize, nonvolatile_total.wsize, nonvolatile_total.csize)
2139 nonvolatile_total.csize += compressed_count
2158 volatile_total.csize = 0
2174 print " all objects:{:<10d} [ virtual:{:<10d} resident:{:<10d} wired:{:<10d} compressed:{:<10d} ]\n".format(volatile_total.objects, volatile_total.vsize, volatile_total.rsize, volatile_total.wsize, volatile_total.csize)
2243 volatile_total.csize += compressed_count
/xnu-2782.1.97/bsd/vfs/
H A Dvfs_cluster.c5700 int csize; local
5739 csize = min(PAGE_SIZE - pg_offset, xsize);
5746 retval = uiomove64(paddr, csize, uio);
5750 xsize -= csize;
5751 csize = min(PAGE_SIZE, xsize);

Completed in 61 milliseconds