Lines Matching refs:history_len
293 int history_len = 0; in decompress_file() local
557 history_len = (history_len + 15) / 16; in decompress_file()
558 putnn(cmdp->cpb, in_histlen, history_len); in decompress_file()
559 history_len = history_len * 16; /* bytes */ in decompress_file()
561 if (history_len > 0) { in decompress_file()
563 if (cur_out >= history_len) { in decompress_file()
565 + (cur_out - history_len), in decompress_file()
566 history_len); in decompress_file()
570 - history_len), in decompress_file()
571 history_len - cur_out); in decompress_file()
581 history_len = 0; in decompress_file()
650 assert(source_sz > history_len); in decompress_file()
651 source_sz = source_sz - history_len; in decompress_file()
679 source_sz = source_sz + history_len; in decompress_file()
766 assert(source_sz > history_len); in decompress_file()
767 source_sz = ((source_sz - history_len + 2) / 2) + history_len; in decompress_file()
770 source_sz, history_len)); in decompress_file()
782 assert(spbc >= history_len); in decompress_file()
783 source_sz = spbc - history_len; in decompress_file()
796 assert(spbc > history_len); in decompress_file()
797 source_sz = spbc - history_len; in decompress_file()
919 history_len = (total_out > window_max) ? window_max : total_out; in decompress_file()