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

/freebsd-12-stable/contrib/opencsd/decoder/source/ptm/
H A Dtrc_pkt_proc_ptm.cpp1024 uint8_t byteVal; local
1036 byteVal = m_currPacketData[tsIdx];
1042 bCont = ((byteVal & 0x80) == 0x80);
1043 byteVal &= 0x7F;
1056 bCont = ((byteVal & 0x80) == 0x80);
1057 byteVal &= 0x7F;
1062 byteVal &=0x3F;
1067 tsVal |= (((uint64_t)byteVal) << shift);
/freebsd-12-stable/contrib/opencsd/decoder/source/etmv4/
H A Dtrc_pkt_proc_etmv4i_impl.cpp1457 uint8_t byteVal; local
1464 byteVal = buffer[(st_idx + idx)];
1465 lastByte = (byteVal & 0x80) != 0x80;
1466 value |= ((uint32_t)(byteVal & 0x7F)) << (idx * 7);
1481 uint8_t byteVal; local
1488 byteVal = buffer[(st_idx + idx)];
1489 lastByte = (byteVal & 0x80) != 0x80;
1490 value |= ((uint64_t)(byteVal & 0x7F)) << (idx * 7);

Completed in 50 milliseconds