Home
last modified time | relevance | path

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

/RvlSDK-2.1/build/libraries/cx/src/
DCXCompression.c363 u32 RLDstCount; // Number of bytes of compressed data in CXCompressRL() local
379 RLDstCount = 4; in CXCompressRL()
414 … if (RLDstCount + rawDataLength + 1 >= size) // Quit on error if size becomes larger than source in CXCompressRL()
418 dstp[RLDstCount++] = (u8)(rawDataLength - 1); // Store "data length - 1" (7 bits) in CXCompressRL()
421 dstp[RLDstCount++] = srcp[RLSrcCount++]; in CXCompressRL()
449 if (RLDstCount + 2 >= size) // Quit on error if size becomes larger than source in CXCompressRL()
453 dstp[RLDstCount++] = (u8)(0x80 | (runLength - 3)); // Add 3, and store 3 to 130 in CXCompressRL()
454 dstp[RLDstCount++] = srcp[RLSrcCount]; in CXCompressRL()
463 while ((RLDstCount + i) & 0x3) in CXCompressRL()
465 dstp[RLDstCount + i] = 0; in CXCompressRL()
[all …]