Home
last modified time | relevance | path

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

/freebsd/contrib/opencsd/decoder/source/ptm/
H A Dtrc_pkt_proc_ptm.cpp83 uint8_t currByte = 0; in processData() local
118 if(readByte(currByte)) in processData()
120 m_pIPktFn = m_i_table[currByte].pptkFn; in processData()
121 m_curr_packet.type = m_i_table[currByte].pkt_type; in processData()
233 const bool TrcPktProcPtm::readByte(uint8_t &currByte) in readByte() argument
239 currByte = m_pDataIn[m_dataInProcessed++]; in readByte()
240 m_currPacketData.push_back(currByte); in readByte()
407 uint8_t currByte; in findAsync() local
411 if(readByte(currByte)) in findAsync()
413 if(currByte == 0x00) in findAsync()
[all …]
/freebsd/contrib/opencsd/decoder/source/etmv3/
H A Dtrc_pkt_proc_etmv3_impl.cpp234 uint8_t currByte; in waitForSync() local
241 currByte = pDataBlock[bytesProcessed++]; in waitForSync()
248 m_currPacketData.push_back(currByte); in waitForSync()
249 if((currByte == 0x80) && (m_currPacketData.size() >= 6)) in waitForSync()
265 else if(currByte != 0x00) in waitForSync()
277 if(currByte == 0x00) // could be the start of a-sync in waitForSync()
281 m_currPacketData.push_back(currByte); in waitForSync()
294 m_currPacketData.push_back(currByte); in waitForSync()
1066 uint8_t currByte; in extractTimestamp() local
1074 currByte = m_currPacketData[m_currPktIdx+tsCurrBytes]; in extractTimestamp()
[all …]
/freebsd/contrib/opencsd/decoder/include/opencsd/ptm/
H A Dtrc_pkt_proc_ptm.h90 const bool readByte(uint8_t &currByte);
207 uint8_t currByte; in readByte() local
208 return readByte(currByte); in readByte()