Home | History | Annotate | Download | only in kern

Lines Matching refs:b_bcount

126 	if (bp->b_bcount <= DEV_BSIZE)
134 bp->b_blkno + (bp->b_bcount - 1) / DEV_BSIZE);
136 if (lp && (blkdone >= 0 || bp->b_bcount <= lp->d_secsize)) {
323 sz = howmany((int64_t)bp->b_bcount, secsize);
326 * bp->b_bcount is a 32-bit value, and we rejected a negative
334 bp->b_resid = bp->b_bcount;
343 bp->b_bcount = sz * secsize;
383 sz = howmany((int64_t)bp->b_bcount, DEV_BSIZE);
386 * bp->b_bcount is a 32-bit value, and we rejected a negative
394 bp->b_resid = bp->b_bcount;
403 bp->b_bcount = sz << DEV_BSHIFT;
429 bp->b_bcount = count * lp->d_secsize;