Lines Matching refs:destCount
119 u32 destCount = internal::Read32Le(pSrc) >> 8; in UncompressRL() local
122 if ( destCount == 0 ) in UncompressRL()
124 destCount = internal::Read32Le(pSrc); in UncompressRL()
128 while ( destCount > 0 ) in UncompressRL()
135 if ( length > destCount ) in UncompressRL()
138 length = destCount; in UncompressRL()
141 destCount -= length; in UncompressRL()
152 if ( length > destCount ) in UncompressRL()
155 length = destCount; in UncompressRL()
158 destCount -= length; in UncompressRL()
201 u32 destCount = internal::Read32Le(pSrc) >> 8; in UncompressLZ() local
206 if ( destCount == 0 ) in UncompressLZ()
208 destCount = internal::Read32Le(pSrc); in UncompressLZ()
212 while ( destCount > 0 ) in UncompressLZ()
220 destCount--; in UncompressLZ()
255 length = nn::math::Min(length, destCount); in UncompressLZ()
256 destCount -= length; in UncompressLZ()
263 if ( destCount <= 0 ) in UncompressLZ()
328 s32 destCount = (s32)( internal::ConvertEndian( *pSrc ) >> 8 ); in UncompressHuffman() local
329 u8 *treep = (destCount != 0)? ((u8*)pSrc + 4) : ((u8*)pSrc + 8); in UncompressHuffman()
336 if ( destCount == 0 ) in UncompressHuffman()
338 destCount = (s32)( internal::ConvertEndian( *(pSrc + 1) ) ); in UncompressHuffman()
344 while ( destCount > 0 ) in UncompressHuffman()
363 destCount -= 4; in UncompressHuffman()
367 if ( destCount <= 0 ) in UncompressHuffman()
934 s32 destCount = (s32)( internal::Read32Le(pSrc) >> 8 ); in UnfilterDiff() local
945 destCount--; in UnfilterDiff()
948 } while ( destCount > 0 ); in UnfilterDiff()
960 destCount -= 2; in UnfilterDiff()
964 } while ( destCount > 0 ); in UnfilterDiff()