Home
last modified time | relevance | path

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

/AOO41X/main/filter/source/graphicfilter/itiff/
H A Dccidecom.cxx622 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 …]
H A Dlzwdecom.cxx66 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()
H A Dlzwdecom.hxx69 sal_uInt16 nInputBitsBufSize; member in LZWDecompressor
H A Dccidecom.hxx113 sal_uInt16 nInputBitsBufSize; member in CCIDecompressor
/AOO41X/main/svtools/source/filter/igif/
H A Ddecode.cxx43 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()
H A Ddecode.hxx46 sal_uInt16 nInputBitsBufSize; member in GIFLZWDecompressor