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

  /external/pdfium/core/src/fxcrt/
xml_int.h 14 , m_pBuffer(pBuffer)
53 return m_pBuffer;
65 FX_LPCBYTE m_pBuffer;
76 , m_pBuffer(NULL)
84 if (m_pBuffer) {
85 FX_Allocator_Free(m_pAllocator, m_pBuffer);
119 if (!m_pBuffer) {
120 m_pBuffer = FX_Allocator_Alloc(m_pAllocator, FX_BYTE, m_dwSize);
121 if (!m_pBuffer) {
125 return m_pFileRead->ReadBlock(m_pBuffer, m_nStart, m_dwSize);
    [all...]
fx_basic_buffer.cpp 12 , m_pBuffer(NULL)
23 m_pBuffer = FX_Allocator_Alloc(m_pAllocator, FX_BYTE, size);
27 if (m_pBuffer) {
28 FX_Allocator_Free(m_pAllocator, m_pBuffer);
33 if (!m_pBuffer || start_index < 0 || start_index + count > m_DataSize) {
36 FXSYS_memmove32(m_pBuffer + start_index, m_pBuffer + start_index + count, m_DataSize - start_index - count);
46 m_pBuffer = NULL;
51 if (m_pBuffer) {
52 FX_Allocator_Free(m_pAllocator, m_pBuffer);
    [all...]
fx_xml_parser.cpp 58 m_pBuffer = m_pDataAcc->GetBlockBuffer();
130 while (m_dwIndex < m_dwBufferSize && g_FXCRT_XML_IsWhiteSpace(m_pBuffer[m_dwIndex])) {
149 ch = m_pBuffer[m_dwIndex];
176 if (str.GetAt(i) != m_pBuffer[m_dwIndex ++]) {
211 ch = m_pBuffer[m_dwIndex];
296 ch = m_pBuffer[m_dwIndex];
338 ch = m_pBuffer[m_dwIndex];
411 if (!g_FXCRT_XML_IsNameIntro(m_pBuffer[m_dwIndex])) {
421 if (m_pBuffer[m_dwIndex] != '=') {
445 FX_BYTE ch = m_pBuffer[m_dwIndex ++];
    [all...]
fx_basic_maps.cpp 392 FX_LPBYTE m_pBuffer;
397 FX_Allocator_Free(pAllocator, pCompact->m_pBuffer);
411 return FXSYS_memcmp32(pCompact->m_pBuffer, pStr, len) == 0;
423 pCompact->m_pBuffer = FX_Allocator_Alloc(pAllocator, FX_BYTE, len);
424 if (pCompact->m_pBuffer) {
425 FXSYS_memcpy32(pCompact->m_pBuffer, pStr, len);
431 return CFX_ByteStringC(pCompact->m_pBuffer, pCompact->m_LenHigh * 256 + pCompact->m_LenLow);
mem_int.h 228 FX_LPVOID m_pBuffer;
fx_basic_memmgr_mini.cpp 151 m_pBuffer = pBuffer;
171 if (memory > pProxyMgr->m_pBuffer && memory < (FX_LPBYTE)pProxyMgr->m_pBuffer + pProxyMgr->m_nSize) {
  /external/pdfium/core/src/fxge/dib/
fx_dib_main.cpp 58 m_pBuffer = NULL;
64 m_pBuffer = NULL;
81 m_pBuffer = pBuffer;
87 m_pBuffer = FX_AllocNL(FX_BYTE, size);
89 m_pBuffer = FX_Alloc(FX_BYTE, size);
91 if (m_pBuffer == NULL) {
94 FXSYS_memset32(m_pBuffer, 0, sizeof (FX_BYTE) * size);
103 if (!m_bExtBuf && m_pBuffer) {
104 FX_Free(m_pBuffer);
105 m_pBuffer = NULL;
    [all...]
fx_dib_composite.cpp     [all...]
fx_dib_convert.cpp     [all...]
  /external/pdfium/core/src/fxge/android/
fpf_skiafontmgr.h 83 CFPF_SkiaBufferFont() : m_pBuffer(NULL), m_szBuffer(0) {}
88 FX_LPVOID m_pBuffer;
fpf_skiafont.cpp 187 m_Face = pFontMgr->GetFontFace((FX_LPCBYTE)pFont->m_pBuffer, pFont->m_szBuffer, pFont->m_iFaceIndex);
  /external/pdfium/core/src/fpdfapi/fpdf_page/
fpdf_page_colors.cpp     [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_parser/
fpdf_parser_filters.cpp 188 pStreamFilter->m_pBuffer = NULL;
197 if (m_pBuffer) {
198 delete m_pBuffer;
217 if (m_pBuffer) {
225 ASSERT(m_pBuffer == NULL);
229 m_pBuffer = FX_NEW CFX_BinaryBuf;
230 m_pBuffer->EstimateSize(FPDF_FILTER_BUFFER_SIZE, FPDF_FILTER_BUFFER_SIZE);
235 m_pFilter->FilterFinish(*m_pBuffer);
245 m_pFilter->FilterIn(m_SrcBuffer, src_size, *m_pBuffer);
246 if (m_pBuffer->GetSize() >= (int)buf_size) {
    [all...]
  /external/pdfium/core/include/fxge/
fx_dib.h 300 return m_pBuffer;
305 return m_pBuffer ? m_pBuffer + line * m_Pitch : NULL;
350 FX_LPBYTE m_pBuffer;
  /external/pdfium/core/include/fpdfapi/
fpdf_resource.h 685 m_pBuffer = NULL;
695 return m_pBuffer == NULL;
723 FX_FLOAT* m_pBuffer;
fpdf_objects.h 686 CFX_BinaryBuf* m_pBuffer;
  /external/pdfium/core/include/fxcrt/
fx_basic.h 49 m_pBuffer[m_DataSize++] = byte;
64 return m_pBuffer;
82 FX_LPBYTE m_pBuffer;
148 return (FX_LPWSTR)m_pBuffer;
265 FX_LPBYTE m_pBuffer;
    [all...]
  /external/pdfium/core/src/fxge/win32/
fx_win32_dib.cpp 292 m_hBitmap = CreateDIBSection(hDC, (BITMAPINFO*)&bmih, DIB_RGB_COLORS, (LPVOID*)&m_pBuffer, NULL, 0);

Completed in 166 milliseconds