Lines Matching refs:sof
673 u32 sof; in uvc_video_clock_update() local
703 sof = y; in uvc_video_clock_update()
709 sof >> 16, div_u64(((u64)sof & 0xffff) * 1000000LLU, 65536), in uvc_video_clock_update()
729 if (mean - (1024 << 16) > sof) in uvc_video_clock_update()
730 sof += 2048 << 16; in uvc_video_clock_update()
731 else if (sof > mean + (1024 << 16)) in uvc_video_clock_update()
732 sof -= 2048 << 16; in uvc_video_clock_update()
734 y = (u64)(y2 - y1) * (u64)sof + (u64)y1 * (u64)x2 in uvc_video_clock_update()
743 sof >> 16, div_u64(((u64)sof & 0xffff) * 1000000LLU, 65536), in uvc_video_clock_update()
1197 unsigned int sof; in uvc_video_decode_meta() local
1205 length + sizeof(meta->ns) + sizeof(meta->sof)) { in uvc_video_decode_meta()
1233 sof = usb_get_current_frame_number(stream->dev->udev); in uvc_video_decode_meta()
1236 put_unaligned(sof, &meta->sof); in uvc_video_decode_meta()
1242 meta_buf->bytesused += length + sizeof(meta->ns) + sizeof(meta->sof); in uvc_video_decode_meta()
1246 __func__, ktime_to_ns(time), meta->sof, meta->length, in uvc_video_decode_meta()