Lines Matching refs:mtc
691 static void intel_pt_fixup_last_mtc(uint32_t mtc, int mtc_shift,
697 *last_mtc |= mtc & mask;
698 if (*last_mtc >= mtc) {
711 uint32_t mtc, mtc_delta, ctc, fc, ctc_rem;
738 mtc = pkt_info->packet.payload;
741 intel_pt_fixup_last_mtc(mtc, decoder->mtc_shift,
744 if (mtc > data->last_mtc)
745 mtc_delta = mtc - data->last_mtc;
747 mtc_delta = mtc + 256 - data->last_mtc;
749 data->last_mtc = mtc;
1580 uint32_t mtc, mtc_delta;
1585 mtc = decoder->packet.payload;
1589 intel_pt_fixup_last_mtc(mtc, decoder->mtc_shift,
1593 if (mtc > decoder->last_mtc)
1594 mtc_delta = mtc - decoder->last_mtc;
1596 mtc_delta = mtc + 256 - decoder->last_mtc;
1619 decoder->last_mtc = mtc;