Searched refs:pHexTab (Results 1 – 1 of 1) sorted by relevance
/aoo4110/main/sdext/source/pdfimport/pdfparse/ |
H A D | pdfentries.cxx | 224 static const char pHexTab[16] = { '0', '1', '2', '3', '4', '5', '6', '7', in emit() local 230 if( ! rWriteContext.write( pHexTab + ((sal_uInt32(pStr[i]) >> 4) & 0x0f), 1 ) ) in emit() 232 if( ! rWriteContext.write( pHexTab + (sal_uInt32(pStr[i]) & 0x0f), 1 ) ) in emit() 1284 static const sal_Unicode pHexTab[16] = { '0', '1', '2', '3', '4', '5', '6', '7', in getDecryptionKey() local 1286 aBuf.append( pHexTab[(m_pData->m_aDecryptionKey[i] >> 4) & 0x0f] ); in getDecryptionKey() 1287 aBuf.append( pHexTab[(m_pData->m_aDecryptionKey[i] & 0x0f)] ); in getDecryptionKey()
|
Completed in 15 milliseconds