Lines Matching defs:count
117 static ssize_t scr24x_read(struct file *filp, char __user *buf, size_t count,
124 if (count < CCID_HEADER_SIZE)
152 if (len < count)
153 count = len;
155 if (copy_to_user(buf, dev->buf, count)) {
160 ret = count;
167 size_t count, loff_t *ppos)
181 if (count > sizeof(dev->buf)) {
186 if (copy_from_user(dev->buf, buf, count)) {
200 for (i = 0; i < count; i += 5) {
201 for (y = 0; y < 5 && i + y < count; y++)
210 ret = count;