Searched refs:nIVLength (Results 1 – 1 of 1) sorted by relevance
206 sal_Int16 nIVLength = static_cast < sal_Int16 > ( rData->m_aInitVector.getLength() ); in StaticFillHeader() local267 *(pHeader++) = static_cast< sal_Int8 >(( nIVLength >> 0 ) & 0xFF); in StaticFillHeader()268 *(pHeader++) = static_cast< sal_Int8 >(( nIVLength >> 8 ) & 0xFF); in StaticFillHeader()283 rtl_copyMemory ( pHeader, rData->m_aInitVector.getConstArray(), nIVLength ); in StaticFillHeader()284 pHeader += nIVLength; in StaticFillHeader()348 sal_Int16 nIVLength = ( pBuffer[nPos++] & 0xFF ); in StaticFillData() local349 nIVLength |= ( pBuffer[nPos++] & 0xFF ) << 8; in StaticFillData()360 if ( nIVLength == rStream->readBytes ( aBuffer, nIVLength ) ) in StaticFillData()362 rData->m_aInitVector.realloc ( nIVLength ); in StaticFillData()363 rtl_copyMemory ( rData->m_aInitVector.getArray(), aBuffer.getConstArray(), nIVLength ); in StaticFillData()
Completed in 11 milliseconds