Lines Matching refs:copy_length
489 int copy_length; in LZXdecompress() local
628 copy_length = match_offset - window_posn; in LZXdecompress()
629 if (copy_length < match_length) { in LZXdecompress()
630 match_length -= copy_length; in LZXdecompress()
631 window_posn += copy_length; in LZXdecompress()
632 while (copy_length-- > 0) *rundest++ = *runsrc++; in LZXdecompress()
718 copy_length = match_offset - window_posn; in LZXdecompress()
719 if (copy_length < match_length) { in LZXdecompress()
720 match_length -= copy_length; in LZXdecompress()
721 window_posn += copy_length; in LZXdecompress()
722 while (copy_length-- > 0) *rundest++ = *runsrc++; in LZXdecompress()