Home
last modified time | relevance | path

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

/RvlSDK-3.3/build/libraries/cx/src/
DCXCompression.c419 u32 RLDstCount; // Number of bytes of compressed data in CXCompressRL() local
437 RLDstCount = 4; in CXCompressRL()
444 RLDstCount = 8; in CXCompressRL()
479 … if (RLDstCount + rawDataLength + 1 >= size) // Quit on error if size becomes larger than source in CXCompressRL()
483 dstp[RLDstCount++] = (u8)(rawDataLength - 1); // Store "data length - 1" (7 bits) in CXCompressRL()
486 dstp[RLDstCount++] = srcp[RLSrcCount++]; in CXCompressRL()
514 if (RLDstCount + 2 >= size) // Quit on error if size becomes larger than source in CXCompressRL()
518 dstp[RLDstCount++] = (u8)(0x80 | (runLength - 3)); // Add 3, and store from 3 to 130 in CXCompressRL()
519 dstp[RLDstCount++] = srcp[RLSrcCount]; in CXCompressRL()
528 while ((RLDstCount + i) & 0x3) in CXCompressRL()
[all …]