Searched refs:m_pBuf (Results 1 – 6 of 6) 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 | 230 m_pBuf = pData; in CPDF_StreamParser() 306 if (_PDF_CharType[m_pBuf[m_Pos]] == 'W') { in ReadInlineStream() 368 FXSYS_memcpy32(pData, m_pBuf + m_Pos, OrigSize); in ReadInlineStream() 373 …dwStreamSize = PDF_DecodeInlineStream(m_pBuf + m_Pos, m_Size - m_Pos, width, height, Decoder, pPar… in ReadInlineStream() 416 FXSYS_memcpy32(pData, m_pBuf + m_Pos, dwStreamSize); in ReadInlineStream() 439 int ch = m_pBuf[m_Pos++]; in ParseNextElement() 446 ch = m_pBuf[m_Pos++]; in ParseNextElement() 456 ch = m_pBuf[m_Pos++]; in ParseNextElement() 478 ch = m_pBuf[m_Pos++]; in ParseNextElement() 515 int ch = m_pBuf[m_Pos++]; in SkipPathObject() [all …]
|
D | pageint.h | 52 const FX_BYTE* m_pBuf; variable
|
/external/pdfium/core/src/fxge/win32/ |
D | fx_win32_print.cpp | 247 m_pBuf = NULL; in CPSOutput() 251 if (m_pBuf) { in ~CPSOutput() 252 FX_Free(m_pBuf); in ~CPSOutput() 257 m_pBuf = FX_Alloc(FX_CHAR, 1026); in Init() 267 *(FX_WORD*)m_pBuf = send_len; in OutputPS() 268 FXSYS_memcpy(m_pBuf + 2, string + sent_len, send_len); in OutputPS() 269 int ret = ExtEscape(m_hDC, PASSTHROUGH, send_len + 2, m_pBuf, 0, NULL); in OutputPS()
|
D | win32_int.h | 179 FX_LPSTR m_pBuf; variable
|
/external/pdfium/fpdfsdk/src/ |
D | fpdfview.cpp | 295 CMemFile(FX_BYTE* pBuf, FX_FILESIZE size):m_pBuf(pBuf),m_size(size) {} in CMemFile() 302 FXSYS_memcpy(buffer, m_pBuf+offset, size); in ReadBlock() 306 FX_BYTE* m_pBuf; member in CMemFile
|