Lines Matching refs:RLSrcCount
390 …u32 RLSrcCount; // Processed data volume of the compression target data (in byt… in CompressRL() local
416 RLSrcCount = 0; in CompressRL()
420 while (RLSrcCount < size) in CompressRL()
422 startp = &srcp[RLSrcCount]; // Set compression target data in CompressRL()
427 if (RLSrcCount + rawDataLength >= size) in CompressRL()
429 rawDataLength = (u8)(size - RLSrcCount); in CompressRL()
433 if (RLSrcCount + rawDataLength + 2 < size) in CompressRL()
456 dstp[RLDstCount++] = srcp[RLSrcCount++]; in CompressRL()
468 if (RLSrcCount + runLength >= size) in CompressRL()
470 runLength = (u8)(size - RLSrcCount); in CompressRL()
475 if (srcp[RLSrcCount] != srcp[RLSrcCount + runLength]) in CompressRL()
489 dstp[RLDstCount++] = srcp[RLSrcCount]; in CompressRL()
490 RLSrcCount += runLength; in CompressRL()