Home
last modified time | relevance | path

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

/CTR-SDK-4.2.5/sources/libraries/cx/
Dcx_Compression.cpp390 …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()
[all …]