Lines Matching refs:nOldLastBlockLen
111 sal_Int32 nOldLastBlockLen = m_aLastBlock.getLength(); in convertWithCipherContext() local
112 OSL_ENSURE( nOldLastBlockLen <= m_nBlockSize, "Unexpected last block size!" ); in convertWithCipherContext()
114 sal_Int32 nAvailableData = nOldLastBlockLen + aData.getLength(); in convertWithCipherContext()
137 m_aLastBlock.realloc( nOldLastBlockLen + aData.getLength() ); in convertWithCipherContext()
138 …rtl_copyMemory( m_aLastBlock.getArray() + nOldLastBlockLen, aData.getConstArray(), aData.getLength… in convertWithCipherContext()
141 else if ( nToConvertLen < nOldLastBlockLen ) in convertWithCipherContext()
144 …LastBlock.getArray(), m_aLastBlock.getConstArray() + nToConvertLen, nOldLastBlockLen - nToConvertL… in convertWithCipherContext()
145 m_aLastBlock.realloc( nOldLastBlockLen - nToConvertLen + aData.getLength() ); in convertWithCipherContext()
146 …rtl_copyMemory( m_aLastBlock.getArray() + nOldLastBlockLen - nToConvertLen, aData.getConstArray(),… in convertWithCipherContext()
150 rtl_copyMemory( aToConvert.getArray(), m_aLastBlock.getConstArray(), nOldLastBlockLen ); in convertWithCipherContext()
151 if ( nToConvertLen > nOldLastBlockLen ) in convertWithCipherContext()
152 …rtl_copyMemory( aToConvert.getArray() + nOldLastBlockLen, aData.getConstArray(), nToConvertLen - n… in convertWithCipherContext()
154 …y( m_aLastBlock.getArray(), aData.getConstArray() + nToConvertLen - nOldLastBlockLen, nAvailableDa… in convertWithCipherContext()
205 sal_Int32 nOldLastBlockLen = m_aLastBlock.getLength(); in finalizeCipherContextAndDispose() local
206 m_aLastBlock.realloc( nOldLastBlockLen + nPaddingSize ); in finalizeCipherContextAndDispose()
214 … rtl_random_getBytes( aRandomPool, m_aLastBlock.getArray() + nOldLastBlockLen, nPaddingSize - 1 ); in finalizeCipherContextAndDispose()