HomeSort by: relevance | last modified time | path
    Searched refs:towrite (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/fs/ntfs/
ntfs_vnops.c 334 u_int32_t towrite; local in function:ntfs_strategy
340 towrite = MIN(bp->b_bcount,
342 dprintf(("ntfs_strategy: towrite: %d, fsize: %d\n",
343 towrite,(u_int32_t)fp->f_size));
346 fp->f_attrname, ntfs_cntob(bp->b_blkno),towrite,
373 u_int64_t towrite; local in function:ntfs_write
387 towrite = MIN(uio->uio_resid, fp->f_size - uio->uio_offset);
389 dprintf((", towrite: %qu\n",(long long)towrite));
392 fp->f_attrname, uio->uio_offset, towrite, NULL, &written, uio)
    [all...]
ntfs_subr.c 1207 off_t off = roff, left = rsize, towrite; local in function:ntfs_writeattr_plain
1217 towrite = MIN(left, ntfs_cntob(vap->va_vcnend + 1) - off);
1219 (long long) off, (long long) towrite,
1224 towrite, data, &init, uio);
1228 __func__, (long long) off, (long long) towrite));
1236 left -= towrite;
1237 off += towrite;
1238 data = (char *)data + towrite;
  /src/sys/arch/amiga/dev/
fd.c 339 #define FDDMASTART(len, towrite) do { \
340 int dmasz = (len) | ((towrite) ? DISKLEN_WRITE : 0) | DISKLEN_DMAEN; \
1068 fdsetpos(struct fd_softc *sc, int trk, int towrite)
1093 if (towrite)
1097 printf("fdsetpos: cyl %d head %d towrite %d\n", trk / FDNHEADS,
1098 trk % FDNHEADS, towrite);
  /src/sys/dev/hyperv/
vmbus.c 1672 vmbus_ring_avail(struct vmbus_ring_data *rd, uint32_t *towrite,
1686 if (towrite)
1687 *towrite = w;

Completed in 188 milliseconds