| /src/sys/arch/bebox/stand/boot/ | 
| wdvar.h | 83 	uint8_t r_count;  member in struct:wdc_command 
 | 
| wdc.c | 284 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count); 315 	    wd_c->r_blkno, wd_c->r_count));
 323 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count >> 8);
 330 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count);
 437 	wd_c.r_count = 1;
 
 | 
| /src/sys/dev/ata/ | 
| satafis_subr.c | 94 	fis[rhd_count0] = (ata_c->r_count >> 0) & 0xff; 96 		fis[rhd_count1] = (ata_c->r_count >> 8) & 0xff;
 191 	ata_c->r_count = fis[rdh_count0] << 0;
 193 		ata_c->r_count |= fis[rdh_count1] << 8;
 
 | 
| satapmp_subr.c | 95 		((uint64_t)((xfer->c_ata_c.r_count >> 8) & 0xff) << 32) | 97 		((uint64_t)((xfer->c_ata_c.r_count >> 0) & 0xff) << 0);
 140 	xfer->c_ata_c.r_count = (((value >> 32) & 0xff) << 8) |
 
 | 
| ata_recovery.c | 99 	xfer->c_ata_c.r_count = 1; 
 | 
| atavar.h | 89 	uint16_t r_count;	/* before & after */  member in struct:ata_command 
 | 
| wd.c | 1971 	xfer->c_ata_c.r_count = 1; 2153 	xfer->c_ata_c.r_count = wi->wi_atareq.sec_count;
 2176 			wi->wi_atareq.sec_count = xfer->c_ata_c.r_count;
 
 | 
| ata.c | 937 	xfer->c_ata_c.r_count = mode; 
 | 
| /src/sys/arch/cobalt/stand/boot/ | 
| wdc.c | 232 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count); 263 	    wd_c->r_blkno, wd_c->r_count));
 271 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count >> 8);
 278 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count);
 335 	wd_c.r_count = 1;
 
 | 
| wdvar.h | 89 	uint8_t r_count;  member in struct:wdc_command 
 | 
| /src/sys/arch/mmeye/stand/boot/ | 
| wdc.c | 269 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count); 300 	    wd_c->r_blkno, wd_c->r_count));
 308 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count >> 8);
 315 	WDC_WRITE_REG(chp, wd_seccnt, wd_c->r_count);
 372 	wd_c.r_count = 1;
 
 | 
| wdvar.h | 123 	uint8_t r_count;  member in struct:wdc_command 
 | 
| /src/sys/dev/ic/ | 
| wdc.c | 1462 		    ata_c->r_lba, ata_c->r_count, ata_c->r_features, 1471 		    ata_c->r_count & 0xff,
 1648 		ata_c->r_count = bus_space_read_1(wdr->cmd_iot,
 1670 			ata_c->r_count |= bus_space_read_1(wdr->cmd_iot,
 
 | 
| mvsata.c | 1607 	    " r_lba=0x%012"PRIx64", r_count=0x%04x, r_features=0x%04x," 1611 	    drvp->drive, ata_c->bcount, ata_c->r_lba, ata_c->r_count,
 1664 		    ata_c->r_lba, ata_c->r_count, ata_c->r_features,
 1672 		    ata_c->r_count & 0xff,
 1874 		ata_c->r_count = MVSATA_WDC_READ_1(mvport, SRB_SC);
 1890 			ata_c->r_count |=
 
 |