Searched refs:currByte (Results 1 – 5 of 5) sorted by relevance
83 uint8_t currByte = 0; in processData() local118 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()232 const bool TrcPktProcPtm::readByte(uint8_t &currByte) in readByte() argument238 currByte = m_pDataIn[m_dataInProcessed++]; in readByte()239 m_currPacketData.push_back(currByte); in readByte()406 uint8_t currByte; in findAsync() local410 if(readByte(currByte)) in findAsync()412 if(currByte == 0x00) in findAsync()[all …]
234 uint8_t currByte; in waitForSync() local241 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() local1074 currByte = m_currPacketData[m_currPktIdx+tsCurrBytes]; in extractTimestamp()[all …]
96 uint8_t currByte = *src; in swizzle_bit_to_grayscale() local98 dst[0] = ((currByte >> (7-bitIndex)) & 1) ? GRAYSCALE_WHITE : GRAYSCALE_BLACK; in swizzle_bit_to_grayscale()103 currByte = *(src += bitOffset / 8); in swizzle_bit_to_grayscale()104 dst[x] = ((currByte >> (7-bitIndex)) & 1) ? GRAYSCALE_WHITE : GRAYSCALE_BLACK; in swizzle_bit_to_grayscale()120 uint8_t currByte = *src; in swizzle_bit_to_n32() local122 dst[0] = ((currByte >> (7 - bitIndex)) & 1) ? SK_ColorWHITE : SK_ColorBLACK; in swizzle_bit_to_n32()127 currByte = *(src += bitOffset / 8); in swizzle_bit_to_n32()128 dst[x] = ((currByte >> (7 - bitIndex)) & 1) ? SK_ColorWHITE : SK_ColorBLACK; in swizzle_bit_to_n32()143 uint8_t currByte = *src; in swizzle_bit_to_565() local145 dst[0] = ((currByte >> (7 - bitIndex)) & 1) ? RGB565_WHITE : RGB565_BLACK; in swizzle_bit_to_565()[all …]
90 const bool readByte(uint8_t &currByte);207 uint8_t currByte; in readByte() local208 return readByte(currByte); in readByte()