Lines Matching refs:mtc
794 static void intel_pt_fixup_last_mtc(uint32_t mtc, int mtc_shift,
800 *last_mtc |= mtc & mask;
801 if (*last_mtc >= mtc) {
814 uint32_t mtc, mtc_delta, ctc, fc, ctc_rem;
844 mtc = pkt_info->packet.payload;
847 intel_pt_fixup_last_mtc(mtc, decoder->mtc_shift,
850 if (mtc > data->last_mtc)
851 mtc_delta = mtc - data->last_mtc;
853 mtc_delta = mtc + 256 - data->last_mtc;
855 data->last_mtc = mtc;
1939 uint32_t mtc, mtc_delta;
1944 mtc = decoder->packet.payload;
1948 intel_pt_fixup_last_mtc(mtc, decoder->mtc_shift,
1952 if (mtc > decoder->last_mtc)
1953 mtc_delta = mtc - decoder->last_mtc;
1955 mtc_delta = mtc + 256 - decoder->last_mtc;
1978 decoder->last_mtc = mtc;