Lines Matching refs:dstCnt
862 u32 dstCnt = 0; in CXSecureUncompressLH() local
917 while ( dstCnt < dstSize ) in CXSecureUncompressLH()
946 dstp[dstCnt++] = (u8)val; in CXSecureUncompressLH()
991 if ( dstCnt - val < 0 ) in CXSecureUncompressLH()
995 if ( dstCnt + length > dstSize ) in CXSecureUncompressLH()
1002 dstp[dstCnt] = dstp[dstCnt - val]; in CXSecureUncompressLH()
1003 ++dstCnt; in CXSecureUncompressLH()
1255 u32 dstCnt = 0; in CXSecureUncompressLRC() local
1296 while ( dstCnt < dstSize ) in CXSecureUncompressLRC()
1305 dstp[ dstCnt++ ] = (u8)val; in CXSecureUncompressLRC()
1315 if ( dstCnt + length > dstSize ) in CXSecureUncompressLRC()
1319 if ( dstCnt < val ) in CXSecureUncompressLRC()
1330 dstp[ dstCnt ] = dstp[ dstCnt - val ]; in CXSecureUncompressLRC()
1331 ++dstCnt; in CXSecureUncompressLRC()