Searched refs:nNewGrowth (Results 1 – 1 of 1) sorted by relevance
191 sal_Int32 nNewGrowth = _rData.getLength() * 2; in writeBytes() local192 if ((m_nMaximumResize > 0) && (nNewGrowth > m_nMaximumResize)) in writeBytes()194 nNewGrowth = m_nMaximumResize; in writeBytes()195 if (nNewGrowth + nCurrentLength < m_nSize + _rData.getLength()) in writeBytes()197 nNewGrowth = m_nSize + _rData.getLength() - nCurrentLength; in writeBytes()199 nNewLength = nCurrentLength + nNewGrowth; in writeBytes()
Completed in 9 milliseconds