Searched refs:iDesiredSize (Results 1 – 2 of 2) sorted by relevance
38 void CFX_CSSTextBuf::ExpandBuf(int32_t iDesiredSize) { in ExpandBuf() argument39 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()
28 void ExpandBuf(int32_t iDesiredSize);