Lines Matching refs:LZDstCount
101 u32 LZDstCount; // Number of bytes of compressed data in CXCompressLZImpl() local
119 LZDstCount = 4; in CXCompressLZImpl()
128 LZDstCount = 8; in CXCompressLZImpl()
137 LZDstCount++; in CXCompressLZImpl()
155 if (LZDstCount + 2 >= dstMax) // Quit on error if size becomes larger than source in CXCompressLZImpl()
167 LZDstCount += 2; in CXCompressLZImpl()
173 LZDstCount += 1; in CXCompressLZImpl()
188 LZDstCount += 2; in CXCompressLZImpl()
196 … if (LZDstCount + 1 >= dstMax) // Quit on error if size becomes larger than source in CXCompressLZImpl()
203 LZDstCount++; in CXCompressLZImpl()
212 while ( (LZDstCount + i) & 0x3 ) in CXCompressLZImpl()
218 return LZDstCount; in CXCompressLZImpl()