HomeSort by relevance Sort by last modified time
    Searched refs:m_Pos (Results 1 - 8 of 8) 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/fpdfapi/page/
cpdf_streamparser.cpp 106 : m_pBuf(pData), m_Size(dwSize), m_Pos(0), m_pPool(nullptr) {}
111 : m_pBuf(pData), m_Size(dwSize), m_Pos(0), m_pPool(pPool) {}
119 if (m_Pos == m_Size)
122 if (PDFCharIsWhitespace(m_pBuf[m_Pos]))
123 m_Pos++;
180 if (OrigSize > m_Size - m_Pos)
181 OrigSize = m_Size - m_Pos;
183 memcpy(pData.get(), m_pBuf + m_Pos, OrigSize);
185 m_Pos += OrigSize;
190 DecodeInlineStream(m_pBuf + m_Pos, m_Size - m_Pos, width, height
    [all...]
cpdf_streamparser.h 34 uint32_t GetPos() const { return m_Pos; }
35 void SetPos(uint32_t pos) { m_Pos = pos; }
55 uint32_t m_Pos; // Current byte position within m_pBuf.
cpdf_textobject.h 48 CFX_PointF GetPos() const { return m_Pos; }
54 void SetPosition(CFX_PointF pos) { m_Pos = pos; }
66 CFX_PointF m_Pos;
cpdf_textobject.cpp 106 obj->m_Pos = m_Pos;
123 m_Pos = CFX_PointF(text_matrix.e, text_matrix.f);
143 pTextMatrix[3], m_Pos.x, m_Pos.y);
287 float dx = x - m_Pos.x;
288 float dy = y - m_Pos.y;
289 m_Pos.x = x;
290 m_Pos.y = y;
  /external/pdfium/core/fpdfapi/parser/
cpdf_syntax_parser.cpp 53 AutoRestorer<FX_FILESIZE> save_pos(&m_Pos);
54 m_Pos = pos;
78 FX_FILESIZE pos = m_Pos + m_HeaderOffset;
86 m_Pos++;
107 if (!m_pFileAccess->ReadBlock(pBuf, m_Pos + m_HeaderOffset, size))
109 m_Pos += size;
134 m_Pos--;
148 m_Pos--;
156 m_Pos--;
174 m_Pos--
    [all...]
cpdf_syntax_parser.h 39 FX_FILESIZE GetPos() const { return m_Pos; }
40 void SetPos(FX_FILESIZE pos) { m_Pos = std::min(pos, m_FileLen); }
95 FX_FILESIZE m_Pos;

Completed in 2168 milliseconds