Lines Matching defs:ltc
4748 int a, ltc, frames, seconds, minutes, hours;
4829 ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
4830 frames = ltc & 0xF;
4831 ltc >>= 4;
4832 frames += (ltc & 0x3) * 10;
4833 ltc >>= 4;
4834 seconds = ltc & 0xF;
4835 ltc >>= 4;
4836 seconds += (ltc & 0x7) * 10;
4837 ltc >>= 4;
4838 minutes = ltc & 0xF;
4839 ltc >>= 4;
4840 minutes += (ltc & 0x7) * 10;
4841 ltc >>= 4;
4842 hours = ltc & 0xF;
4843 ltc >>= 4;
4844 hours += (ltc & 0x3) * 10;
6159 struct hdspm_ltc ltc;
6215 ltc.ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
6221 ltc.format = fps_24;
6224 ltc.format = fps_25;
6227 ltc.format = fps_2997;
6230 ltc.format = fps_30;
6234 ltc.frame = drop_frame;
6236 ltc.frame = full_frame;
6239 ltc.format = format_invalid;
6240 ltc.frame = frame_invalid;
6243 ltc.input_format = ntsc;
6245 ltc.input_format = pal;
6247 ltc.input_format = no_video;
6250 s = copy_to_user(argp, <c, sizeof(ltc));