Home
last modified time | relevance | path

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

/linux/drivers/media/usb/stk1160/
H A Dstk1160-video.c102 int linesdone, lineoff, lencopy, offset; in stk1160_copy_video() local
133 lencopy = min(remain, bytesperline - lineoff); in stk1160_copy_video()
144 if (lencopy > buf->length - offset) { in stk1160_copy_video()
145 lencopy = buf->length - offset; in stk1160_copy_video()
146 remain = lencopy; in stk1160_copy_video()
150 if (lencopy == 0 || remain == 0) in stk1160_copy_video()
154 if (lencopy < 0) { in stk1160_copy_video()
159 if ((unsigned long)dst + lencopy > in stk1160_copy_video()
165 memcpy(dst, src, lencopy); in stk1160_copy_video()
167 buf->bytesused += lencopy; in stk1160_copy_video()
[all …]