Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c85 u32 LZDstCount; // Number of bytes of compressed data in CXCompressLZ() local
100 LZDstCount = 4; in CXCompressLZ()
108 LZDstCount++; in CXCompressLZ()
125 if (LZDstCount + 2 >= dstMax) // Quit on error if size becomes larger than source in CXCompressLZ()
132 LZDstCount += 2; in CXCompressLZ()
140 … if (LZDstCount + 1 >= dstMax) // Quit on error if size becomes larger than source in CXCompressLZ()
147 LZDstCount++; in CXCompressLZ()
156 while ( (LZDstCount + i) & 0x3 ) in CXCompressLZ()
162 return LZDstCount; in CXCompressLZ()