Home
last modified time | relevance | path

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

/freebsd/contrib/opencsd/decoder/source/etmv3/
H A Dtrc_pkt_proc_etmv3_impl.cpp1060 unsigned tsCurrBytes = 0; in extractTimestamp() local
1069 while((tsCurrBytes < tsMaxBytes) && bCont) in extractTimestamp()
1071 if(m_currPacketData.size() < (m_currPktIdx + tsCurrBytes + 1)) in extractTimestamp()
1074 currByte = m_currPacketData[m_currPktIdx+tsCurrBytes]; in extractTimestamp()
1075 ts |= ((uint64_t)(currByte & mask)) << (7 * tsCurrBytes); in extractTimestamp()
1076 tsCurrBytes++; in extractTimestamp()
1079 if(tsCurrBytes == (tsMaxBytes - 1)) in extractTimestamp()
1085 m_currPktIdx += tsCurrBytes; in extractTimestamp()