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

/macosx-10.5.8/xnu-1228.15.4/bsd/dev/
H A Dmemdev.c233 unsigned int left, lop, csize; local
286 csize = min(lop, left); /* Don't move more than we need to */
293 bcopy_phys(fvaddr, paddr, csize); /* Copy this on in */
296 left = left - csize; /* Calculate what is left */
297 vaddr = vaddr + csize; /* Move to next sink address */
298 fvaddr = fvaddr + csize; /* Bump to next physical address */
312 csize = min(lop, left); /* Don't move more than we need to */
320 bcopy_phys(paddr, fvaddr, csize); /* Move this on out */
322 left = left - csize; /* Calculate what is left */
323 vaddr = vaddr + csize; /* Mov
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/i386/
H A Dloose_ends.c1007 copyio_phys(addr64_t source, addr64_t sink, vm_size_t csize, int which) argument
1033 KERNEL_DEBUG(0xeff70048 | DBG_FUNC_NONE, paddr, csize, 0, -1, 0);
1047 retval = copyio(ctype, vaddr, window_offset, csize, NULL, which & cppvKmap);
1065 KERNEL_DEBUG(0xeff70048 | DBG_FUNC_NONE, paddr, csize, 0, 0, 0);
1094 retval = copyio(ctype, vaddr, window_offset, csize, NULL, which & cppvKmap);
1137 unsigned int lop, csize; local
1167 csize = size; /* Assume we can copy it all */
1169 csize = lop; /* Nope, we can't do it all */
1179 flush_dcache64(src64, csize, 1); /* If requested, flush source before move */
1181 flush_dcache64(snk64, csize,
[all...]
/macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/
H A Dmappings.c1602 unsigned int lop, csize; local
1686 csize = size; /* Assume we can copy it all */
1687 if(lop < size) csize = lop; /* Nope, we can't do it all */
1689 if(which & cppvFsrc) flush_dcache64(source, csize, 1); /* If requested, flush source before move */
1690 if(which & cppvFsnk) flush_dcache64(sink, csize, 1); /* If requested, flush sink before move */
1692 bcopy_physvir_32(source, sink, csize); /* Do a physical copy, virtually */
1694 if(which & cppvFsrc) flush_dcache64(source, csize, 1); /* If requested, flush source after move */
1695 if(which & cppvFsnk) flush_dcache64(sink, csize, 1); /* If requested, flush sink after move */
1710 size = size - csize; /* Calculate what is left */
1711 vaddr = vaddr + csize; /* Mov
[all...]
/macosx-10.5.8/AppleMacRiscPCI-3.4/
H A DAppleDART.cpp693 SInt32 csize = gCacheLineSize; local
695 vm_address_t vaddr_cache_aligned = arithAddr & ~(csize-1);
697 SInt c, end = ((SInt)((arithAddr & (csize-1)) + len)) - csize;
699 for (c = 0; c < end; c += csize)
/macosx-10.5.8/xnu-1228.15.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;
/macosx-10.5.8/xnu-1228.15.4/bsd/vfs/
H A Dvfs_cluster.c5066 int csize; local
5112 csize = min(PAGE_SIZE - pg_offset, xsize);
5119 retval = uiomove64(paddr, csize, uio);
5123 xsize -= csize;
5124 csize = min(PAGE_SIZE, xsize);

Completed in 44 milliseconds