Lines Matching defs:ltc
4757 int a, ltc, frames, seconds, minutes, hours;
4838 ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
4839 frames = ltc & 0xF;
4840 ltc >>= 4;
4841 frames += (ltc & 0x3) * 10;
4842 ltc >>= 4;
4843 seconds = ltc & 0xF;
4844 ltc >>= 4;
4845 seconds += (ltc & 0x7) * 10;
4846 ltc >>= 4;
4847 minutes = ltc & 0xF;
4848 ltc >>= 4;
4849 minutes += (ltc & 0x7) * 10;
4850 ltc >>= 4;
4851 hours = ltc & 0xF;
4852 ltc >>= 4;
4853 hours += (ltc & 0x3) * 10;
6174 struct hdspm_ltc ltc;
6230 ltc.ltc = hdspm_read(hdspm, HDSPM_RD_TCO);
6236 ltc.format = fps_24;
6239 ltc.format = fps_25;
6242 ltc.format = fps_2997;
6245 ltc.format = fps_30;
6249 ltc.frame = drop_frame;
6251 ltc.frame = full_frame;
6254 ltc.format = format_invalid;
6255 ltc.frame = frame_invalid;
6258 ltc.input_format = ntsc;
6260 ltc.input_format = pal;
6262 ltc.input_format = no_video;
6265 s = copy_to_user(argp, <c, sizeof(ltc));