Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Compression.cpp393 u8 rawDataLength; // Length of data not run in CompressRL() local
417 rawDataLength = 0; in CompressRL()
427 if (RLSrcCount + rawDataLength >= size) in CompressRL()
429 rawDataLength = (u8)(size - RLSrcCount); in CompressRL()
433 if (RLSrcCount + rawDataLength + 2 < size) in CompressRL()
441 rawDataLength++; in CompressRL()
447 if (rawDataLength) in CompressRL()
449 … if (RLDstCount + rawDataLength + 1 >= size) // Quit on error if size becomes larger than source in CompressRL()
453 dstp[RLDstCount++] = (u8)(rawDataLength - 1); // Store "data length - 1" (7 bits) in CompressRL()
454 for (i = 0; i < rawDataLength; i++) in CompressRL()
[all …]