Lines Matching refs:dstCnt
502 u32 dstCnt = 0; in UncompressLH() local
526 while ( dstCnt < dstSize ) in UncompressLH()
553 dstp[dstCnt++] = (u8)val; in UncompressLH()
593 if ( dstCnt + length > dstSize ) in UncompressLH()
595 length = (u16)( dstSize - dstCnt ); in UncompressLH()
600 dstp[dstCnt] = dstp[dstCnt - val]; in UncompressLH()
601 ++dstCnt; in UncompressLH()
848 u32 dstCnt = 0; in UncompressLRC() local
872 while ( dstCnt < dstSize ) in UncompressLRC()
881 dstp[ dstCnt++ ] = (u8)val; in UncompressLRC()
891 if ( dstCnt + length > dstSize ) in UncompressLRC()
895 if ( dstCnt < val ) in UncompressLRC()
902 dstp[ dstCnt ] = dstp[ dstCnt - val ]; in UncompressLRC()
903 ++dstCnt; in UncompressLRC()