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

  /external/pdfium/core/fxcrt/
cfx_utf8decoder.cpp 11 m_PendingBytes = 0;
20 m_PendingBytes = 0;
23 if (m_PendingBytes == 0) {
26 m_PendingBytes--;
27 m_PendingChar |= (byte & 0x3f) << (m_PendingBytes * 6);
28 if (m_PendingBytes == 0) {
32 m_PendingBytes = 1;
35 m_PendingBytes = 2;
38 m_PendingBytes = 3;
41 m_PendingBytes = 4
    [all...]
cfx_utf8decoder.h 14 CFX_UTF8Decoder() { m_PendingBytes = 0; }
19 void ClearStatus() { m_PendingBytes = 0; }
23 int m_PendingBytes;

Completed in 98 milliseconds