Searched refs:rawDataLength (Results 1 – 1 of 1) sorted by relevance
367 u8 rawDataLength; // Length of data not run in CXCompressRL() local382 rawDataLength = 0; in CXCompressRL()392 if (RLSrcCount + rawDataLength >= size) in CXCompressRL()394 rawDataLength = (u8)(size - RLSrcCount); in CXCompressRL()398 if (RLSrcCount + rawDataLength + 2 < size) in CXCompressRL()406 rawDataLength++; in CXCompressRL()412 if (rawDataLength) 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()419 for (i = 0; i < rawDataLength; i++) in CXCompressRL()[all …]