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()
821 u32 dstCnt = 0; in CXUncompressLRC() local
845 while ( dstCnt < dstSize ) in CXUncompressLRC()
854 dstp[ dstCnt++ ] = (u8)val; in CXUncompressLRC()
864 if ( dstCnt + length > dstSize ) in CXUncompressLRC()
868 if ( dstCnt < val ) in CXUncompressLRC()
875 dstp[ dstCnt ] = dstp[ dstCnt - val ]; in CXUncompressLRC()
876 ++dstCnt; in CXUncompressLRC()