Searched refs:m_PendingChar (Results 1 – 2 of 2) sorted by relevance
25 m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6); in Input()27 AppendChar(m_PendingChar); in Input()31 m_PendingChar = (byte & 0x1f) << 6; in Input()34 m_PendingChar = (byte & 0x0f) << 12; in Input()37 m_PendingChar = (byte & 0x07) << 18; in Input()40 m_PendingChar = (byte & 0x03) << 24; in Input()43 m_PendingChar = (byte & 0x01) << 30; in Input()
162 uint32_t m_PendingChar; variable