Home
last modified time | relevance | path

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

/openbmc/linux/drivers/media/test-drivers/vidtv/
H A Dvidtv_ts.c27 u64 pcr_high; in vidtv_ts_write_pcr_bits() local
32 pcr_high = div; /* pcr_high = pcr / 300 */ in vidtv_ts_write_pcr_bits()
34 *buf++ = pcr_high >> 25; in vidtv_ts_write_pcr_bits()
35 *buf++ = pcr_high >> 17; in vidtv_ts_write_pcr_bits()
36 *buf++ = pcr_high >> 9; in vidtv_ts_write_pcr_bits()
37 *buf++ = pcr_high >> 1; in vidtv_ts_write_pcr_bits()
38 *buf++ = pcr_high << 7 | pcr_low >> 8 | 0x7e; in vidtv_ts_write_pcr_bits()
H A Dvidtv_pes.c189 u64 pcr_high; in vidtv_pes_write_pcr_bits() local
194 pcr_high = div; /* pcr_high = pcr / 300 */ in vidtv_pes_write_pcr_bits()
196 *buf++ = pcr_high >> 25; in vidtv_pes_write_pcr_bits()
197 *buf++ = pcr_high >> 17; in vidtv_pes_write_pcr_bits()
198 *buf++ = pcr_high >> 9; in vidtv_pes_write_pcr_bits()
199 *buf++ = pcr_high >> 1; in vidtv_pes_write_pcr_bits()
200 *buf++ = pcr_high << 7 | pcr_low >> 8 | 0x7e; in vidtv_pes_write_pcr_bits()