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

  /external/pdfium/core/src/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;
  /external/pdfium/core/include/fxcrt/
fx_basic.h 270 FX_DWORD m_PendingChar;

Completed in 380 milliseconds