Lines Matching refs:nLen
62 sal_Int32 nLen = 0; in lclGetLen() local
63 while( (nLen < nBufferSize) && pnPassData[ nLen ] ) ++nLen; in lclGetLen()
64 return nLen; in lclGetLen()
69 sal_Int32 nLen = lclGetLen( pnPassData, nBufferSize ); in lclGetKey() local
70 if( nLen <= 0 ) return 0; in lclGetKey()
75 const sal_uInt8* pnChar = pnPassData + nLen - 1; in lclGetKey()
76 for( sal_Int32 nIndex = 0; nIndex < nLen; ++nIndex, --pnChar ) in lclGetKey()
94 sal_Int32 nLen = lclGetLen( pnPassData, nBufferSize ); in lclGetHash() local
96 sal_uInt16 nHash = static_cast< sal_uInt16 >( nLen ); in lclGetHash()
97 if( nLen > 0 ) in lclGetHash()
101 for( sal_Int32 nIndex = 0; nIndex < nLen; ++nIndex, ++pnChar ) in lclGetHash()
155 sal_Int32 nLen = lclGetLen( pnPassData, 16 ); in initKey() local
157 …for( nIndex = nLen; nIndex < static_cast< sal_Int32 >( sizeof( mpnKey ) ); ++nIndex, ++pnFillChar ) in initKey()