Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/
Dcfx_binarybuf.cpp13 : m_AllocStep(0), m_AllocSize(0), m_DataSize(0) {} in CFX_BinaryBuf()
36 m_AllocSize = 0; in DetachBuffer()
42 if (m_AllocSize < size) in EstimateSize()
49 if (m_AllocSize >= new_size.ValueOrDie()) in ExpandBuf()
53 m_AllocStep ? m_AllocStep : m_AllocSize / 4); in ExpandBuf()
57 m_AllocSize = new_size.ValueOrDie(); in ExpandBuf()
59 ? FX_Realloc(uint8_t, m_pBuffer.release(), m_AllocSize) in ExpandBuf()
60 : FX_Alloc(uint8_t, m_AllocSize)); in ExpandBuf()
Dcfx_binarybuf.h47 size_t m_AllocSize; variable