Lines Matching refs:this_run
478 int togo = outlen, this_run, main_element, aligned_bits; in LZXdecompress() local
549 while ((this_run = pState->block_remaining) > 0 && togo > 0) { in LZXdecompress()
550 if (this_run > togo) this_run = togo; in LZXdecompress()
551 togo -= this_run; in LZXdecompress()
552 pState->block_remaining -= this_run; in LZXdecompress()
557 if ((window_posn + this_run) > window_size) in LZXdecompress()
563 while (this_run > 0) { in LZXdecompress()
569 this_run--; in LZXdecompress()
611 this_run -= match_length; in LZXdecompress()
637 while (this_run > 0) { in LZXdecompress()
643 this_run--; in LZXdecompress()
701 this_run -= match_length; in LZXdecompress()
727 if ((inpos + this_run) > endinp) return DECR_ILLEGALDATA; in LZXdecompress()
728 memcpy(window + window_posn, inpos, (size_t) this_run); in LZXdecompress()
729 inpos += this_run; window_posn += this_run; in LZXdecompress()