Searched refs:m_pBuf (Results 1 – 8 of 8) sorted by relevance
/external/pdfium/core/src/fxcodec/jbig2/ |
D | JBig2_BitStream.h | 72 FX_BYTE *m_pBuf; 82 m_pBuf = pBuffer; in CJBig2_BitStream() 88 m_pBuf = NULL; in CJBig2_BitStream() 93 m_pBuf = bs.m_pBuf; in CJBig2_BitStream() 112 *dwResult = (*dwResult << 1) | ((m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01); in readNBits() 137 *nResult = (*nResult << 1) | ((m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01); in readNBits() 155 *dwResult = (m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01; in read1Bit() 171 *bResult = (m_pBuf[m_dwByteIdx] >> (7 - m_dwBitIdx)) & 0x01; in read1Bit() 186 *cResult = m_pBuf[m_dwByteIdx]; in read1Byte() 197 *dwResult = (m_pBuf[m_dwByteIdx] << 24) | (m_pBuf[m_dwByteIdx + 1] << 16) in readInteger() [all …]
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
D | fpdf_page_parser_old.cpp | 240 m_pBuf = pData; in CPDF_StreamParser() 315 if (PDF_CharType[m_pBuf[m_Pos]] == 'W') { in ReadInlineStream() 377 FXSYS_memcpy32(pData, m_pBuf + m_Pos, OrigSize); in ReadInlineStream() 382 …dwStreamSize = PDF_DecodeInlineStream(m_pBuf + m_Pos, m_Size - m_Pos, width, height, Decoder, pPar… in ReadInlineStream() 425 FXSYS_memcpy32(pData, m_pBuf + m_Pos, dwStreamSize); in ReadInlineStream() 448 int ch = m_pBuf[m_Pos++]; in ParseNextElement() 455 ch = m_pBuf[m_Pos++]; in ParseNextElement() 465 ch = m_pBuf[m_Pos++]; in ParseNextElement() 487 ch = m_pBuf[m_Pos++]; in ParseNextElement() 524 int ch = m_pBuf[m_Pos++]; in SkipPathObject() [all …]
|
D | pageint.h | 55 const FX_BYTE* m_pBuf; variable
|
/external/pdfium/core/src/fxge/win32/ |
D | fx_win32_print.cpp | 241 m_pBuf = NULL; in CPSOutput() 245 if (m_pBuf) { in ~CPSOutput() 246 FX_Free(m_pBuf); in ~CPSOutput() 251 m_pBuf = FX_Alloc(FX_CHAR, 1026); in Init() 261 *(FX_WORD*)m_pBuf = send_len; in OutputPS() 262 FXSYS_memcpy(m_pBuf + 2, string + sent_len, send_len); in OutputPS() 263 int ret = ExtEscape(m_hDC, PASSTHROUGH, send_len + 2, m_pBuf, 0, NULL); in OutputPS()
|
D | win32_int.h | 181 FX_LPSTR m_pBuf; variable
|
/external/pdfium/testing/ |
D | embedder_test.cpp | 102 const char* m_pBuf; member in TestLoader 107 : m_pBuf(pBuf), m_Len(len) { in TestLoader() 114 memcpy(pBuf, pLoader->m_pBuf + pos, size); in Get_Block()
|
/external/pdfium/samples/ |
D | pdfium_test.cc | 400 const char* m_pBuf; member in TestLoader 405 : m_pBuf(pBuf), m_Len(len) { in TestLoader() 412 memcpy(pBuf, pLoader->m_pBuf + pos, size); in Get_Block()
|
/external/pdfium/fpdfsdk/src/ |
D | fpdfview.cpp | 205 CMemFile(FX_BYTE* pBuf, FX_FILESIZE size):m_pBuf(pBuf),m_size(size) {} in CMemFile() 219 FXSYS_memcpy(buffer, m_pBuf+offset, size); in ReadBlock() 223 FX_BYTE* m_pBuf; member in FX_FINAL
|