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

/xnu-2422.115.4/osfmk/x86_64/
H A Dcopyio.c231 copyio_phys(addr64_t source, addr64_t sink, vm_size_t csize, int which) argument
246 return copyio(ctype, vaddr, paddr, csize, NULL, which & cppvKmap);
285 unsigned int lop, csize; local
315 csize = size; /* Assume we can copy it all */
317 csize = lop; /* Nope, we can't do it all */
327 flush_dcache64(src64, csize, 1); /* If requested, flush source before move */
329 flush_dcache64(snk64, csize, 1); /* If requested, flush sink before move */
332 bcopy_phys(src64, snk64, csize); /* Do a physical copy, virtually */
334 if (copyio_phys(src64, snk64, csize, which))
339 flush_dcache64(src64, csize,
[all...]
/xnu-2422.115.4/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-2422.115.4/tools/lldbmacros/
H A Dmbufs.py340 csize = kern.globals.mbuf_table[mca_class].mtbl_stats.mbcl_size
343 if (csize == MSIZE):
349 if (csize == MCLBYTES):
355 if (csize == NBPG):
361 if (csize == M16KCLBYTES):
368 if (csize == (MSIZE + MCLBYTES)):
389 if (csize == (MSIZE + NBPG)):
410 if (csize == (MSIZE + M16KCLBYTES)):
/xnu-2422.115.4/osfmk/console/panic_ui/
H A Dgenimage.c1470 unsigned int i, adj, csize, tmp, col, line; local
1478 csize = height*depth*(width+adj);
1480 if( debug && csize != size )
1481 printf("Adjusted Computed size (%d=H*W*D) to account to account for word alignment %d(%d)\n", size,csize,csize-size);
1483 tmp = csize + ( 2 * sizeof(unsigned int) );
1500 fwrite(data, csize, 1, ostream);
1519 image_header.dataSize = csize;
/xnu-2422.115.4/bsd/vfs/
H A Dvfs_cluster.c5673 int csize; local
5712 csize = min(PAGE_SIZE - pg_offset, xsize);
5719 retval = uiomove64(paddr, csize, uio);
5723 xsize -= csize;
5724 csize = min(PAGE_SIZE, xsize);

Completed in 36 milliseconds