Lines Matching refs:dstCnt
908 u32 dstCnt = 0; in SecureUncompressLH() local
964 while ( dstCnt < dstSize ) in SecureUncompressLH()
995 dstp[dstCnt++] = (u8)val; in SecureUncompressLH()
1040 if ( dstCnt < val ) in SecureUncompressLH()
1044 if ( dstCnt + length > dstSize ) in SecureUncompressLH()
1051 dstp[dstCnt] = dstp[dstCnt - val]; in SecureUncompressLH()
1052 ++dstCnt; in SecureUncompressLH()
1309 u32 dstCnt = 0; in SecureUncompressLRC() local
1350 while ( dstCnt < dstSize ) in SecureUncompressLRC()
1359 dstp[ dstCnt++ ] = (u8)val; in SecureUncompressLRC()
1369 if ( dstCnt + length > dstSize ) in SecureUncompressLRC()
1373 if ( dstCnt < val ) in SecureUncompressLRC()
1384 dstp[ dstCnt ] = dstp[ dstCnt - val ]; in SecureUncompressLRC()
1385 ++dstCnt; in SecureUncompressLRC()