Lines Matching refs:sal_uInt8

560 						const sal_uInt8* pData = pA->GetData();  in playMetafile()
1088 std::vector< sal_uInt8 > maOValue;
1110 std::vector< sal_uInt8 >& getOValue() { return maOValue; } in getOValue()
1155 m_pEncryptionBuffer = (sal_uInt8*)rtl_reallocateMemory( m_pEncryptionBuffer, newSize ); in checkEncryptionBufferSize()
1170 m_aContext.Encryption.EncryptionKey[i++] = (sal_uInt8)nObject; in checkAndEnableStreamEncryption()
1171 m_aContext.Encryption.EncryptionKey[i++] = (sal_uInt8)( nObject >> 8 ); in checkAndEnableStreamEncryption()
1172 m_aContext.Encryption.EncryptionKey[i++] = (sal_uInt8)( nObject >> 16 ); in checkAndEnableStreamEncryption()
1175 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in checkAndEnableStreamEncryption()
1189 m_aContext.Encryption.EncryptionKey[i++] = (sal_uInt8)nObject; in enableStringEncryption()
1190 m_aContext.Encryption.EncryptionKey[i++] = (sal_uInt8)( nObject >> 8 ); in enableStringEncryption()
1191 m_aContext.Encryption.EncryptionKey[i++] = (sal_uInt8)( nObject >> 16 ); in enableStringEncryption()
1194 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in enableStringEncryption()
1219 sal_uInt8 aPadUPW[ENCRYPTED_PWD_SIZE], aPadOPW[ENCRYPTED_PWD_SIZE]; in initEncryption()
1301 void PDFWriterImpl::padPassword( const rtl::OUString& i_rPassword, sal_uInt8* o_pPaddedPW ) in padPassword()
1311 o_pPaddedPW[nCurrentChar] = (sal_uInt8)( aString.getStr()[nCurrentChar] ); in padPassword()
1335 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in computeEncryptionKey()
1348 sal_uInt8 nPerm[4]; in computeEncryptionKey()
1350 nPerm[0] = (sal_uInt8)i_nAccessPermissions; in computeEncryptionKey()
1351 nPerm[1] = (sal_uInt8)( i_nAccessPermissions >> 8 ); in computeEncryptionKey()
1352 nPerm[2] = (sal_uInt8)( i_nAccessPermissions >> 16 ); in computeEncryptionKey()
1353 nPerm[3] = (sal_uInt8)( i_nAccessPermissions >> 24 ); in computeEncryptionKey()
1404 bool PDFWriterImpl::computeODictionaryValue( const sal_uInt8* i_pPaddedOwnerPassword, in computeODictionaryValue()
1405 const sal_uInt8* i_pPaddedUserPassword, in computeODictionaryValue()
1406 std::vector< sal_uInt8 >& io_rOValue, in computeODictionaryValue()
1424 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in computeODictionaryValue()
1454 sal_uInt8 nLocalKey[ SECUR_128BIT_KEY ]; // 16 = 128 bit key in computeODictionaryValue()
1459 nLocalKey[y] = (sal_uInt8)( nMD5Sum[y] ^ i ); in computeODictionaryValue()
1534 sal_uInt8 nMD5Sum[ RTL_DIGEST_LENGTH_MD5 ]; in computeUDictionaryValue()
1543 sal_uInt8 nLocalKey[SECUR_128BIT_KEY]; in computeUDictionaryValue()
1548 nLocalKey[y] = (sal_uInt8)( io_rProperties.EncryptionKey[y] ^ i ); in computeUDictionaryValue()
1629 const sal_uInt8 * pByte = static_cast<sal_uInt8*>(i_pLine) + (nIndex/8); in findBitRun()
1630 sal_uInt8 nByte = *pByte; in findBitRun()
1636 sal_uInt8 nMask = 0x80 >> nBitInByte; in findBitRun()
1652 sal_uInt8 nRunByte; in findBitRun()
1681 sal_uInt8 mnBuffer;
1690 const sal_uInt8* getByte() const { return &mnBuffer; } in getByte()
1698 … io_rState.mnBuffer |= static_cast<sal_uInt8>( i_nCode >> (i_nLength - io_rState.mnNextBitPos) ); in putG4Bits()
1705 …io_rState.mnBuffer |= static_cast<sal_uInt8>( (i_nCode & msbmask[i_nLength]) << (io_rState.mnNextB… in putG4Bits()