Lines Matching refs:data_count
1959 int fifodata, data_count;
1997 data_count = fifodata > CURRENT_SC->SCp.this_residual ?
2000 fifodata -= data_count;
2002 if (data_count & 1) {
2010 if (data_count > 1) {
2011 data_count >>= 1;
2012 insw(DATAPORT, CURRENT_SC->SCp.ptr, data_count);
2013 CURRENT_SC->SCp.ptr += 2 * data_count;
2014 CURRENT_SC->SCp.this_residual -= 2 * data_count;
2015 DATA_LEN += 2 * data_count;
2092 int data_count;
2096 data_count = 128;
2097 if(data_count > CURRENT_SC->SCp.this_residual)
2098 data_count=CURRENT_SC->SCp.this_residual;
2107 if(data_count & 1) {
2115 if(data_count > 1) {
2116 data_count >>= 1;
2117 outsw(DATAPORT, CURRENT_SC->SCp.ptr, data_count);
2118 CURRENT_SC->SCp.ptr += 2 * data_count;
2119 CURRENT_SC->SCp.this_residual -= 2 * data_count;
2120 CMD_INC_RESID(CURRENT_SC, -2 * data_count);