Lines Matching defs:cnt
444 uint rdflags, char __user *buf, size_t cnt)
453 if (cnt % sizeof(struct ptp_extts_event) != 0)
456 if (cnt > EXTTS_BUFSIZE)
457 cnt = EXTTS_BUFSIZE;
459 cnt = cnt / sizeof(struct ptp_extts_event);
485 if (cnt > qcnt)
486 cnt = qcnt;
488 for (i = 0; i < cnt; i++) {
496 cnt = cnt * sizeof(struct ptp_extts_event);
500 result = cnt;
501 if (copy_to_user(buf, event, cnt))