Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/opencsd/decoder/source/ptm/
H A Dtrc_pkt_proc_ptm.cpp1024 uint8_t byteVal; in extractTS() local
1036 byteVal = m_currPacketData[tsIdx]; in extractTS()
1042 bCont = ((byteVal & 0x80) == 0x80); in extractTS()
1043 byteVal &= 0x7F; in extractTS()
1056 bCont = ((byteVal & 0x80) == 0x80); in extractTS()
1057 byteVal &= 0x7F; in extractTS()
1062 byteVal &=0x3F; in extractTS()
1067 tsVal |= (((uint64_t)byteVal) << shift); in extractTS()
/freebsd-13.1/contrib/opencsd/decoder/source/etmv4/
H A Dtrc_pkt_proc_etmv4i.cpp1542 uint8_t byteVal; in extractContField() local
1549 byteVal = buffer[(st_idx + idx)]; in extractContField()
1550 lastByte = (byteVal & 0x80) != 0x80; in extractContField()
1551 value |= ((uint32_t)(byteVal & 0x7F)) << (idx * 7); in extractContField()
1566 uint8_t byteVal; in extractContField64() local
1573 byteVal = buffer[(st_idx + idx)]; in extractContField64()
1574 lastByte = (byteVal & 0x80) != 0x80; in extractContField64()
1575 value |= ((uint64_t)(byteVal & 0x7F)) << (idx * 7); in extractContField64()