Searched refs:nInputBitsBufSize (Results 1 – 6 of 6) sorted by relevance
622 nInputBitsBufSize = 0; in StartDecompression()652 sal_uInt16 nOldInputBitsBufSize = nInputBitsBufSize; in DecompressScanline()656 nInputBitsBufSize = nOldInputBitsBufSize; in DecompressScanline()690 nInputBitsBufSize &= 0xfff8; in DecompressScanline()781 while ( nInputBitsBufSize < 12 ) in ReadEOL()792 nInputBitsBufSize += 8; in ReadEOL()794 nCode = (sal_uInt16)( ( nInputBitsBuf >> ( nInputBitsBufSize - 12 ) ) & 0x0fff ); in ReadEOL()798 nInputBitsBufSize -= 12; in ReadEOL()802 nInputBitsBufSize--; in ReadEOL()813 if (nInputBitsBufSize==0) { in Read2DTag()[all …]
66 nInputBitsBufSize=8; in StartDecompression()128 if (nInputBitsBufSize<=nBits) in GetNextCode()130 nCode=(nCode<<nInputBitsBufSize) | nInputBitsBuf; in GetNextCode()131 nBits = nBits - nInputBitsBufSize; in GetNextCode()135 nInputBitsBufSize=8; in GetNextCode()139 nCode=(nCode<<nBits) | (nInputBitsBuf>>(nInputBitsBufSize-nBits)); in GetNextCode()140 nInputBitsBufSize = nInputBitsBufSize - nBits; in GetNextCode()141 nInputBitsBuf&=0x00ff>>(8-nInputBitsBufSize); in GetNextCode()
69 sal_uInt16 nInputBitsBufSize; member in LZWDecompressor
113 sal_uInt16 nInputBitsBufSize; member in CCIDecompressor
43 nInputBitsBufSize ( 0 ), in GIFLZWDecompressor()148 while( nInputBitsBufSize < nCodeSize ) in ProcessOneCode()156 nInputBitsBuf |= ( (sal_uLong) pBlockBuf[ nBlockBufPos++ ] ) << nInputBitsBufSize; in ProcessOneCode()157 nInputBitsBufSize += 8; in ProcessOneCode()166 nInputBitsBufSize = nInputBitsBufSize - nCodeSize; in ProcessOneCode()
46 sal_uInt16 nInputBitsBufSize; member in GIFLZWDecompressor