HomeSort by relevance Sort by last modified time
    Searched refs:m_PendingChar (Results 1 - 2 of 2) sorted by null

  /external/pdfium/core/fxcrt/
fx_basic_utf.cpp 25 m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6);
27 AppendChar(m_PendingChar);
31 m_PendingChar = (byte & 0x1f) << 6;
34 m_PendingChar = (byte & 0x0f) << 12;
37 m_PendingChar = (byte & 0x07) << 18;
40 m_PendingChar = (byte & 0x03) << 24;
43 m_PendingChar = (byte & 0x01) << 30;
fx_basic.h 162 uint32_t m_PendingChar;

Completed in 59 milliseconds