Home
last modified time | relevance | path

Searched refs:realcount (Results 1 – 3 of 3) sorted by relevance

/linux-2.4.37.9/drivers/usb/
Dstv680.c1434 unsigned long int realcount = count; in stv680_read() local
1445 if (realcount > (stv680->vwidth * stv680->vheight * 3)) in stv680_read()
1446 realcount = stv680->vwidth * stv680->vheight * 3; in stv680_read()
1467 if ((i = copy_to_user (buf, stv680->frame[0].data, realcount)) != 0) { in stv680_read()
1472 realcount = ret; in stv680_read()
1475 return realcount; in stv680_read()
Dse401.c1302 int realcount=count, ret=0; in se401_read() local
1308 if (realcount > se401->cwidth*se401->cheight*3) in se401_read()
1309 realcount=se401->cwidth*se401->cheight*3; in se401_read()
1333 if (copy_to_user(buf, se401->frame[0].data, realcount)) in se401_read()
1336 return realcount; in se401_read()
/linux-2.4.37.9/drivers/s390/char/
Dtape34xx.c1347 int realcount; in tape34xx_bread() local
1365 realcount=req->sector/s2b; in tape34xx_bread()
1369 data[3] += realcount % 256; in tape34xx_bread()
1370 data[2] += (realcount / 256) % 256; in tape34xx_bread()
1371 data[1] += (realcount / 65536); in tape34xx_bread()
1374 debug_int_event (tape_debug_area,6,realcount); in tape34xx_bread()
1389 if (realcount!=ti->position) { in tape34xx_bread()
1396 ti->position=realcount+req->nr_sectors/s2b; in tape34xx_bread()