Lines Matching refs:rawDataLength
367 u8 rawDataLength; // Length of data not run in CXCompressRL() local
382 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()
423 rawDataLength = 0; in CXCompressRL()