Lines Matching refs:destCount

99     u32      destCount = MI_HToLE32( *(u32*)pSrc ) >> 8;  in MI_SecureUncompressRL()  local
118 if ( destCount == 0 ) in MI_SecureUncompressRL()
124 destCount = MI_HToLE32( *(u32*)pSrc ); in MI_SecureUncompressRL()
129 if ( dstSize < destCount ) in MI_SecureUncompressRL()
134 while ( destCount > 0 ) in MI_SecureUncompressRL()
146 if ( length > destCount ) in MI_SecureUncompressRL()
157 destCount -= length; in MI_SecureUncompressRL()
168 if ( length > destCount ) in MI_SecureUncompressRL()
174 destCount -= length; in MI_SecureUncompressRL()
230 u32 destCount = MI_HToLE32( *(u32*)pSrc ) >> 8; in MI_SecureUncompressLZ() local
250 if ( destCount == 0 ) in MI_SecureUncompressLZ()
257 destCount = MI_HToLE32( *(u32*)pSrc ); in MI_SecureUncompressLZ()
262 if ( dstSize < destCount ) in MI_SecureUncompressLZ()
267 while ( destCount > 0 ) in MI_SecureUncompressLZ()
292 destCount--; // Should this also be checked? in MI_SecureUncompressLZ()
300 destCount--; in MI_SecureUncompressLZ()
372 if ( length > destCount ) in MI_SecureUncompressLZ()
381 destCount -= length; in MI_SecureUncompressLZ()
388 if ( destCount <= 0 ) in MI_SecureUncompressLZ()
533 s32 destCount = (s32)( MI_HToLE32( *pSrc ) >> 8 ); in MI_SecureUncompressHuffman() local
534 u8 *treep = (destCount != 0)? ((u8*)pSrc + 4) : ((u8*)pSrc + 8); in MI_SecureUncompressHuffman()
552 if ( destCount == 0 ) in MI_SecureUncompressHuffman()
558 destCount = (s32)( MI_HToLE32( *(pSrc + 1) ) ); in MI_SecureUncompressHuffman()
578 if ( dstSize < destCount ) in MI_SecureUncompressHuffman()
585 while ( destCount > 0 ) in MI_SecureUncompressHuffman()
608 if ( destCount <= (destTmpCount * dataBit) / 8 ) in MI_SecureUncompressHuffman()
618 destCount -= 4; in MI_SecureUncompressHuffman()
622 if ( destCount <= 0 ) in MI_SecureUncompressHuffman()
717 s32 destCount = (s32)( MI_HToLE32( *(u32*)pSrc ) >> 8 ); in MI_SecureUnfilterDiff() local
733 if ( dstSize < destCount ) in MI_SecureUnfilterDiff()
751 destCount--; in MI_SecureUnfilterDiff()
754 } while ( destCount > 0 ); in MI_SecureUnfilterDiff()
768 destCount -= 2; in MI_SecureUnfilterDiff()
772 } while ( destCount > 0 ); in MI_SecureUnfilterDiff()