Home
last modified time | relevance | path

Searched refs:m_AllocSize (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/core/fxcrt/
Dcfx_binarybuf.cpp45 m_AllocSize = 0; in DetachBuffer()
50 if (m_AllocSize < size) in EstimateSize()
57 if (m_AllocSize >= new_size.ValueOrDie()) in ExpandBuf()
61 m_AllocStep ? m_AllocStep : m_AllocSize / 4); in ExpandBuf()
65 m_AllocSize = new_size.ValueOrDie(); in ExpandBuf()
67 ? FX_Realloc(uint8_t, m_pBuffer.release(), m_AllocSize) in ExpandBuf()
68 : FX_Alloc(uint8_t, m_AllocSize)); in ExpandBuf()
Dcfx_binarybuf.h52 size_t m_AllocSize = 0; variable