Home
last modified time | relevance | path

Searched refs:nInputBitsBuf (Results 1 – 6 of 6) sorted by relevance

/trunk/main/filter/source/graphicfilter/itiff/
H A Dlzwdecom.cxx64 *pIStream >> nInputBitsBuf; in StartDecompression()
70 bInvert = nInputBitsBuf == 1; in StartDecompression()
75nInputBitsBuf = ( ( nInputBitsBuf & 1 ) << 7 ) | ( ( nInputBitsBuf & 2 ) << 5 ) | ( ( nInputBitsBu… in StartDecompression()
130 nCode=(nCode<<nInputBitsBufSize) | nInputBitsBuf; in GetNextCode()
132 *pIStream >> nInputBitsBuf; in GetNextCode()
134nInputBitsBuf = ( ( 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()
H A Dccidecom.cxx653 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 …]
H A Dlzwdecom.hxx68 sal_uInt8 nInputBitsBuf; member in LZWDecompressor
H A Dccidecom.hxx112 sal_uLong nInputBitsBuf; member in CCIDecompressor
/trunk/main/svtools/source/filter/igif/
H A Ddecode.cxx41 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()
H A Ddecode.hxx39 sal_uLong nInputBitsBuf; member in GIFLZWDecompressor

Completed in 22 milliseconds