Lines Matching refs:LZDstCount
67 u32 LZDstCount; // Number of bytes of compressed data in CompressLZImpl() local
85 LZDstCount = 4; in CompressLZImpl()
94 LZDstCount = 8; in CompressLZImpl()
103 LZDstCount++; in CompressLZImpl()
121 if (LZDstCount + 2 >= dstMax) // Quit on error if size becomes larger than source in CompressLZImpl()
133 LZDstCount += 2; in CompressLZImpl()
139 LZDstCount += 1; in CompressLZImpl()
154 LZDstCount += 2; in CompressLZImpl()
162 … if (LZDstCount + 1 >= dstMax) // Quit on error if size becomes larger than source in CompressLZImpl()
169 LZDstCount++; in CompressLZImpl()
178 while ( (LZDstCount + i) & 0x3 ) in CompressLZImpl()
184 return LZDstCount; in CompressLZImpl()