Searched refs:rawDataLength (Results 1 – 1 of 1) sorted by relevance
393 u8 rawDataLength; // Length of data not run in CompressRL() local417 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 …]