Home
last modified time | relevance | path

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

/RvlSDK-3.2.2/build/libraries/cx/src/
DCXCompression.c423 u8 rawDataLength; // Length of non-run data in CXCompressRL() local
447 rawDataLength = 0; in CXCompressRL()
457 if (RLSrcCount + rawDataLength >= size) in CXCompressRL()
459 rawDataLength = (u8)(size - RLSrcCount); in CXCompressRL()
463 if (RLSrcCount + rawDataLength + 2 < size) in CXCompressRL()
471 rawDataLength++; in CXCompressRL()
477 if (rawDataLength) 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()
484 for (i = 0; i < rawDataLength; i++) in CXCompressRL()
[all …]