Home
last modified time | relevance | path

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

/external/pdfium/core/fxcrt/css/
Dcfx_csstextbuf.cpp38 void CFX_CSSTextBuf::ExpandBuf(int32_t iDesiredSize) { in ExpandBuf() argument
39 ASSERT(iDesiredSize > 0); in ExpandBuf()
40 if (m_pBuffer && m_iBufLen == iDesiredSize) in ExpandBuf()
44 m_pBuffer = FX_Realloc(wchar_t, m_pBuffer, iDesiredSize); in ExpandBuf()
46 m_pBuffer = FX_Alloc(wchar_t, iDesiredSize); in ExpandBuf()
48 m_iBufLen = iDesiredSize; in ExpandBuf()
Dcfx_csstextbuf.h28 void ExpandBuf(int32_t iDesiredSize);