Lines Matching refs:destCount

102     u32      destCount = internal::Read32Le(pSrc) >> 8;  in SecureUncompressRL()  local
121 if ( destCount == 0 ) in SecureUncompressRL()
127 destCount = internal::Read32Le(pSrc); in SecureUncompressRL()
132 while ( destCount > 0 ) in SecureUncompressRL()
144 if ( length > destCount ) in SecureUncompressRL()
155 destCount -= length; in SecureUncompressRL()
166 if ( length > destCount ) in SecureUncompressRL()
172 destCount -= length; in SecureUncompressRL()
229 u32 destCount = internal::Read32Le(pSrc) >> 8; in SecureUncompressLZ() local
249 if ( destCount == 0 ) in SecureUncompressLZ()
256 destCount = internal::Read32Le(pSrc); in SecureUncompressLZ()
261 while ( destCount > 0 ) in SecureUncompressLZ()
279 destCount--; in SecureUncompressLZ()
323 if ( length > destCount ) in SecureUncompressLZ()
332 destCount -= length; in SecureUncompressLZ()
338 if ( destCount <= 0 ) in SecureUncompressLZ()
489 s32 destCount = (s32)( internal::ConvertEndian( *pSrc ) >> 8 ); in SecureUncompressHuffman() local
490 u8 *treep = (destCount != 0)? ((u8*)pSrc + 4) : ((u8*)pSrc + 8); in SecureUncompressHuffman()
508 if ( destCount == 0 ) in SecureUncompressHuffman()
514 destCount = (s32)( internal::ConvertEndian( *(pSrc + 1) ) ); in SecureUncompressHuffman()
536 while ( destCount > 0 ) in SecureUncompressHuffman()
559 if ( destCount <= (s32)((destTmpCount * dataBit) / 8) ) in SecureUncompressHuffman()
569 destCount -= 4; in SecureUncompressHuffman()
573 if ( destCount <= 0 ) in SecureUncompressHuffman()
684 s32 destCount = (s32)( internal::Read32Le(pSrc) >> 8 ); in SecureUnfilterDiff() local
714 destCount--; in SecureUnfilterDiff()
717 } while ( destCount > 0 ); in SecureUnfilterDiff()
734 destCount -= 2; in SecureUnfilterDiff()
738 } while ( destCount > 0 ); in SecureUnfilterDiff()