Lines Matching refs:LZDstCount
43 u32 LZDstCount; // Number of bytes of compressed data in MI_CompressLZImpl() local
58 LZDstCount = 4; in MI_CompressLZImpl()
67 LZDstCount++; in MI_CompressLZImpl()
85 if (LZDstCount + 2 >= dstMax) // Quit on error if size becomes larger than source in MI_CompressLZImpl()
97 LZDstCount += 2; in MI_CompressLZImpl()
103 LZDstCount += 1; in MI_CompressLZImpl()
118 LZDstCount += 2; in MI_CompressLZImpl()
125 if (LZDstCount + 1 >= dstMax) // Quit on error if size becomes larger than source in MI_CompressLZImpl()
131 LZDstCount++; in MI_CompressLZImpl()
140 while ((LZDstCount + i) & 0x3) in MI_CompressLZImpl()
146 return LZDstCount; in MI_CompressLZImpl()
363 u32 LZDstCount; // Number of bytes of compressed data in MI_CompressLZFastImpl() local
378 LZDstCount = 4; in MI_CompressLZFastImpl()
386 LZDstCount++; in MI_CompressLZFastImpl()
404 if (LZDstCount + 2 >= dstMax) // Quit on error if size becomes larger than source in MI_CompressLZFastImpl()
416 LZDstCount += 2; in MI_CompressLZFastImpl()
422 LZDstCount += 1; in MI_CompressLZFastImpl()
437 LZDstCount += 2; in MI_CompressLZFastImpl()
445 if (LZDstCount + 1 >= dstMax) // Quit on error if size becomes larger than source in MI_CompressLZFastImpl()
452 LZDstCount++; in MI_CompressLZFastImpl()
461 while ((LZDstCount + i) & 0x3) in MI_CompressLZFastImpl()
467 return LZDstCount; in MI_CompressLZFastImpl()