ifdef out DecompressEnd if FEATURE_CLEAN_UP is not seleted fallbackSort 1655 1672 +17 mainSort 2447 2458 +11 bzip2_main 109 119 +10 .rodata 123466 123469 +3 generateMTFValues 433 435 +2 handle_compress 355 356 +1 BZ2_bzCompress 79 78 -1 prepare_new_block 55 48 -7 compressStream 547 503 -44 sendMTFValues 2225 2140 -85 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 6/4 up/down: 44/-137) Total: -93 bytes text data bss dec hex filename 676421 2538 12104 691063 a8b77 busybox_old 676328 2538 12104 690970 a8b1a busybox_unstripped
		
			
				
	
	
		
			66 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * bzip2 is written by Julian Seward <jseward@bzip.org>.
 | 
						|
 * Adapted for busybox by Denys Vlasenko <vda.linux@googlemail.com>.
 | 
						|
 * See README and LICENSE files in this directory for more information.
 | 
						|
 */
 | 
						|
 | 
						|
/*-------------------------------------------------------------*/
 | 
						|
/*--- Public header file for the library.                   ---*/
 | 
						|
/*---                                               bzlib.h ---*/
 | 
						|
/*-------------------------------------------------------------*/
 | 
						|
 | 
						|
/* ------------------------------------------------------------------
 | 
						|
This file is part of bzip2/libbzip2, a program and library for
 | 
						|
lossless, block-sorting data compression.
 | 
						|
 | 
						|
bzip2/libbzip2 version 1.0.4 of 20 December 2006
 | 
						|
Copyright (C) 1996-2006 Julian Seward <jseward@bzip.org>
 | 
						|
 | 
						|
Please read the WARNING, DISCLAIMER and PATENTS sections in the
 | 
						|
README file.
 | 
						|
 | 
						|
This program is released under the terms of the license contained
 | 
						|
in the file LICENSE.
 | 
						|
------------------------------------------------------------------ */
 | 
						|
 | 
						|
#define BZ_RUN               0
 | 
						|
#define BZ_FLUSH             1
 | 
						|
#define BZ_FINISH            2
 | 
						|
 | 
						|
#define BZ_OK                0
 | 
						|
#define BZ_RUN_OK            1
 | 
						|
#define BZ_FLUSH_OK          2
 | 
						|
#define BZ_FINISH_OK         3
 | 
						|
#define BZ_STREAM_END        4
 | 
						|
#define BZ_SEQUENCE_ERROR    (-1)
 | 
						|
#define BZ_PARAM_ERROR       (-2)
 | 
						|
#define BZ_MEM_ERROR         (-3)
 | 
						|
#define BZ_DATA_ERROR        (-4)
 | 
						|
#define BZ_DATA_ERROR_MAGIC  (-5)
 | 
						|
#define BZ_IO_ERROR          (-6)
 | 
						|
#define BZ_UNEXPECTED_EOF    (-7)
 | 
						|
#define BZ_OUTBUFF_FULL      (-8)
 | 
						|
#define BZ_CONFIG_ERROR      (-9)
 | 
						|
 | 
						|
typedef struct bz_stream {
 | 
						|
	void *state;
 | 
						|
	char *next_in;
 | 
						|
	char *next_out;
 | 
						|
	unsigned avail_in;
 | 
						|
	unsigned avail_out;
 | 
						|
	/*unsigned long long total_in;*/
 | 
						|
	unsigned long long total_out;
 | 
						|
} bz_stream;
 | 
						|
 | 
						|
/*-- Core (low-level) library functions --*/
 | 
						|
 | 
						|
static void BZ2_bzCompressInit(bz_stream *strm, int blockSize100k);
 | 
						|
static int BZ2_bzCompress(bz_stream *strm, int action);
 | 
						|
#if ENABLE_FEATURE_CLEAN_UP
 | 
						|
static void BZ2_bzCompressEnd(bz_stream *strm);
 | 
						|
#endif
 | 
						|
 | 
						|
/*-------------------------------------------------------------*/
 | 
						|
/*--- end                                           bzlib.h ---*/
 | 
						|
/*-------------------------------------------------------------*/
 |