Searched refs:nInputBitsBuf (Results 1 – 6 of 6) sorted by relevance
64 *pIStream >> nInputBitsBuf; in StartDecompression()70 bInvert = nInputBitsBuf == 1; in StartDecompression()75 …nInputBitsBuf = ( ( nInputBitsBuf & 1 ) << 7 ) | ( ( nInputBitsBuf & 2 ) << 5 ) | ( ( nInputBitsBu… in StartDecompression()130 nCode=(nCode<<nInputBitsBufSize) | nInputBitsBuf; in GetNextCode()132 *pIStream >> nInputBitsBuf; in GetNextCode()134 …nInputBitsBuf = ( ( nInputBitsBuf & 1 ) << 7 ) | ( ( nInputBitsBuf & 2 ) << 5 ) | ( ( nInputBitsBu… in GetNextCode()139 nCode=(nCode<<nBits) | (nInputBitsBuf>>(nInputBitsBufSize-nBits)); in GetNextCode()141 nInputBitsBuf&=0x00ff>>(8-nInputBitsBufSize); in GetNextCode()
653 sal_uInt32 nOldInputBitsBuf = nInputBitsBuf; in DecompressScanline()657 nInputBitsBuf = nOldInputBitsBuf; in DecompressScanline()797 nInputBitsBuf=(nInputBitsBuf<<8) | (sal_uLong)nByte; in ReadEOL()823 nInputBitsBuf=(sal_uLong)nByte; in Read2DTag()827 if ( ((nInputBitsBuf>>nInputBitsBufSize)&0x0001) ) return sal_False; in Read2DTag()841 nInputBitsBuf=(sal_uLong)nByte; in ReadBlackOrWhite()845 if ( ((nInputBitsBuf>>nInputBitsBufSize)&0x0001) ) return 0xff; in ReadBlackOrWhite()861 nInputBitsBuf=(nInputBitsBuf<<8) | (sal_uLong)nByte; in ReadCodeAndDecode()864 nCode=(sal_uInt16)((nInputBitsBuf>>(nInputBitsBufSize-nMaxCodeBits)) in ReadCodeAndDecode()949 nInputBitsBuf=(nInputBitsBuf<<8) | (sal_uLong)nByte; in Read1DScanlineData()[all …]
68 sal_uInt8 nInputBitsBuf; member in LZWDecompressor
112 sal_uLong nInputBitsBuf; member in CCIDecompressor
41 nInputBitsBuf ( 0 ), in GIFLZWDecompressor()156 nInputBitsBuf |= ( (sal_uLong) pBlockBuf[ nBlockBufPos++ ] ) << nInputBitsBufSize; in ProcessOneCode()164 ( (sal_uInt16) nInputBitsBuf ) & ( ~( 0xffff << nCodeSize ) )); in ProcessOneCode()165 nInputBitsBuf >>= nCodeSize; in ProcessOneCode()
39 sal_uLong nInputBitsBuf; member in GIFLZWDecompressor
Completed in 29 milliseconds