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

  /external/pdfium/core/src/fxcodec/jbig2/
JBig2_BitStream.h 72 FX_BYTE *m_pBuf;
82 m_pBuf = pBuffer;
88 m_pBuf = NULL;
93 m_pBuf = bs.m_pBuf;
112 *dwResult = (*dwResult << 1) | ((m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01);
137 *nResult = (*nResult << 1) | ((m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01);
155 *dwResult = (m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01;
171 *bResult = (m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01;
186 *cResult = m_pBuf[m_dwByteIdx]
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_parser_old.cpp 240 m_pBuf = pData;
315 if (PDF_CharType[m_pBuf[m_Pos]] == 'W') {
377 FXSYS_memcpy32(pData, m_pBuf + m_Pos, OrigSize);
382 dwStreamSize = PDF_DecodeInlineStream(m_pBuf + m_Pos, m_Size - m_Pos, width, height, Decoder, pParam,
425 FXSYS_memcpy32(pData, m_pBuf + m_Pos, dwStreamSize);
448 int ch = m_pBuf[m_Pos++];
455 ch = m_pBuf[m_Pos++];
465 ch = m_pBuf[m_Pos++];
487 ch = m_pBuf[m_Pos++];
524 int ch = m_pBuf[m_Pos++]
    [all...]
pageint.h 55 const FX_BYTE* m_pBuf;
  /external/pdfium/core/src/fxge/win32/
fx_win32_print.cpp 241 m_pBuf = NULL;
245 if (m_pBuf) {
246 FX_Free(m_pBuf);
251 m_pBuf = FX_Alloc(FX_CHAR, 1026);
261 *(FX_WORD*)m_pBuf = send_len;
262 FXSYS_memcpy(m_pBuf + 2, string + sent_len, send_len);
263 int ret = ExtEscape(m_hDC, PASSTHROUGH, send_len + 2, m_pBuf, 0, NULL);
win32_int.h 181 FX_LPSTR m_pBuf;
  /external/pdfium/testing/
embedder_test.cpp 102 const char* m_pBuf;
107 : m_pBuf(pBuf), m_Len(len) {
114 memcpy(pBuf, pLoader->m_pBuf + pos, size);
  /external/pdfium/samples/
pdfium_test.cc 400 const char* m_pBuf;
405 : m_pBuf(pBuf), m_Len(len) {
412 memcpy(pBuf, pLoader->m_pBuf + pos, size);
  /external/pdfium/fpdfsdk/src/
fpdfview.cpp 205 CMemFile(FX_BYTE* pBuf, FX_FILESIZE size):m_pBuf(pBuf),m_size(size) {}
219 FXSYS_memcpy(buffer, m_pBuf+offset, size);
223 FX_BYTE* m_pBuf;

Completed in 612 milliseconds