Lines Matching refs:dstCnt
483 u32 dstCnt = 0; in CXUncompressLH() local
507 while ( dstCnt < dstSize ) in CXUncompressLH()
532 dstp[dstCnt++] = (u8)val; in CXUncompressLH()
572 if ( dstCnt + length > dstSize ) in CXUncompressLH()
574 length = (u16)( dstSize - dstCnt ); in CXUncompressLH()
579 dstp[dstCnt] = dstp[dstCnt - val]; in CXUncompressLH()
580 ++dstCnt; in CXUncompressLH()
820 u32 dstCnt = 0; in CXUncompressLRC() local
844 while ( dstCnt < dstSize ) in CXUncompressLRC()
853 dstp[ dstCnt++ ] = (u8)val; in CXUncompressLRC()
863 if ( dstCnt + length > dstSize ) in CXUncompressLRC()
867 if ( dstCnt < val ) in CXUncompressLRC()
874 dstp[ dstCnt ] = dstp[ dstCnt - val ]; in CXUncompressLRC()
875 ++dstCnt; in CXUncompressLRC()