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

  /external/lzma/CS/7zip/Common/
OutBuffer.cs 8 uint m_Pos;
27 m_Pos = 0;
32 m_Buffer[m_Pos++] = b;
33 if (m_Pos >= m_BufferSize)
39 if (m_Pos == 0)
41 m_Stream.Write(m_Buffer, 0, (int)m_Pos);
42 m_Pos = 0;
45 public ulong GetProcessedSize() { return m_ProcessedSize + m_Pos; }
InBuffer.cs 8 uint m_Pos;
26 m_Pos = 0;
34 m_ProcessedSize += m_Pos;
36 m_Pos = 0;
51 if (m_Pos >= m_Limit)
54 b = m_Buffer[m_Pos++];
61 if (m_Pos >= m_Limit)
64 return m_Buffer[m_Pos++];
69 return m_ProcessedSize + m_Pos;
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_parser_old.cpp 232 m_Pos = 0;
303 if (m_Pos == m_Size) {
306 if (_PDF_CharType[m_pBuf[m_Pos]] == 'W') {
307 m_Pos ++;
364 if (OrigSize > m_Size - m_Pos) {
365 OrigSize = m_Size - m_Pos;
368 FXSYS_memcpy32(pData, m_pBuf + m_Pos, OrigSize);
370 m_Pos += OrigSize;
373 dwStreamSize = PDF_DecodeInlineStream(m_pBuf + m_Pos, m_Size - m_Pos, width, height, Decoder, pParam,
    [all...]
pageint.h 39 return m_Pos;
43 m_Pos = pos;
54 FX_DWORD m_Pos;
  /frameworks/compile/mclinker/include/mcld/Support/
GCFactory.h 30 unsigned int m_Pos;
34 : m_pChunk(X), m_Pos(pPos)
38 ++m_Pos;
39 if ((m_Pos == m_pChunk->bound) && (0 == m_pChunk->next))
41 if (m_Pos == m_pChunk->bound) {
43 m_Pos = 0;
48 { return ((this->m_pChunk == y.m_pChunk) && (this->m_Pos == y.m_Pos)); }
51 { return ((this->m_pChunk != y.m_pChunk) || (this->m_Pos != y.m_Pos)); }
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_parser.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_edit/
fpdf_edit_create.cpp 888 m_Pos = NULL;
    [all...]
  /external/pdfium/core/include/fpdfapi/
fpdf_serial.h 189 FX_POSITION m_Pos;
fpdf_parser.h 257 return m_Pos;
262 m_Pos = pos;
321 FX_FILESIZE m_Pos;
1071 FX_FILESIZE m_Pos;

Completed in 207 milliseconds