Home | History | Annotate | Download | only in ata

Lines Matching defs:rcount

345 	long bcount, rcount;
362 for (bcount = bp->b_bcount; bcount > 0; bcount -= rcount) {
363 rcount = bp->b_bcount;
364 if ((adi->adi_compsize - bn) < btodb(rcount))
365 rcount = dbtob(adi->adi_compsize - bn);
367 cbp = ld_ataraid_make_cbuf(sc, bp, comp, bn, addr, rcount);
385 addr += rcount;
403 long bcount, rcount;
415 for (bcount = bp->b_bcount; bcount > 0; bcount -= rcount) {
428 rcount = uimin(bcount, dbtob(sz));
433 rcount = uimin(bcount, dbtob(aai->aai_interleave - off));
454 cbp = ld_ataraid_make_cbuf(sc, bp, comp, cbn, addr, rcount);
472 comp, cbn, addr, rcount);
481 bn += btodb(rcount);
482 addr += rcount;