亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? gzip.c

?? 手機嵌入式Linux下可用的busybox源碼
?? C
?? 第 1 頁 / 共 5 頁
字號:
	}	if (s == NULL) {		c = 0xffffffffL;	} else {		c = crc;		if (n)			do {				c = crc_32_tab[((int) c ^ (*s++)) & 0xff] ^ (c >> 8);			} while (--n);	}	crc = c;	return c ^ 0xffffffffL;		/* (instead of ~c for 64-bit machines) */}/* bits.c -- output variable-length bit strings * Copyright (C) 1992-1993 Jean-loup Gailly * This is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License, see the file COPYING. *//* *  PURPOSE * *      Output variable-length bit strings. Compression can be done *      to a file or to memory. (The latter is not supported in this version.) * *  DISCUSSION * *      The PKZIP "deflate" file format interprets compressed file data *      as a sequence of bits.  Multi-bit strings in the file may cross *      byte boundaries without restriction. * *      The first bit of each byte is the low-order bit. * *      The routines in this file allow a variable-length bit value to *      be output right-to-left (useful for literal values). For *      left-to-right output (useful for code strings from the tree routines), *      the bits must have been reversed first with bi_reverse(). * *      For in-memory compression, the compressed bit stream goes directly *      into the requested output buffer. The input data is read in blocks *      by the mem_read() function. The buffer is limited to 64K on 16 bit *      machines. * *  INTERFACE * *      void bi_init (FILE *zipfile) *          Initialize the bit string routines. * *      void send_bits (int value, int length) *          Write out a bit string, taking the source bits right to *          left. * *      int bi_reverse (int value, int length) *          Reverse the bits of a bit string, taking the source bits left to *          right and emitting them right to left. * *      void bi_windup (void) *          Write out any remaining bits in an incomplete byte. * *      void copy_block(char *buf, unsigned len, int header) *          Copy a stored block to the zip file, storing first the length and *          its one's complement if requested. * *//* =========================================================================== * Local data used by the "bit string" routines. */static file_t zfile;				/* output gzip file */static unsigned short bi_buf;/* Output buffer. bits are inserted starting at the bottom (least significant * bits). */#define Buf_size (8 * 2*sizeof(char))/* Number of bits used within bi_buf. (bi_buf might be implemented on * more than 16 bits on some systems.) */static int bi_valid;/* Current input function. Set to mem_read for in-memory compression */#ifdef DEBUGulg bits_sent;					/* bit length of the compressed data */#endif/* =========================================================================== * Initialize the bit string routines. */static void bi_init(file_t zipfile){	zfile = zipfile;	bi_buf = 0;	bi_valid = 0;#ifdef DEBUG	bits_sent = 0L;#endif	/* Set the defaults for file compression. They are set by memcompress	 * for in-memory compression.	 */	if (zfile != NO_FILE) {		read_buf = file_read;	}}/* =========================================================================== * Send a value on a given number of bits. * IN assertion: length <= 16 and value fits in length bits. */static void send_bits(int value, int length){#ifdef DEBUG	Tracev((stderr, " l %2d v %4x ", length, value));	Assert(length > 0 && length <= 15, "invalid length");	bits_sent += (ulg) length;#endif	/* If not enough room in bi_buf, use (valid) bits from bi_buf and	 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))	 * unused bits in value.	 */	if (bi_valid > (int) Buf_size - length) {		bi_buf |= (value << bi_valid);		put_short(bi_buf);		bi_buf = (ush) value >> (Buf_size - bi_valid);		bi_valid += length - Buf_size;	} else {		bi_buf |= value << bi_valid;		bi_valid += length;	}}/* =========================================================================== * Reverse the first len bits of a code, using straightforward code (a faster * method would use a table) * IN assertion: 1 <= len <= 15 */static unsigned bi_reverse(unsigned code, int len){	register unsigned res = 0;	do {		res |= code & 1;		code >>= 1, res <<= 1;	} while (--len > 0);	return res >> 1;}/* =========================================================================== * Write out any remaining bits in an incomplete byte. */static void bi_windup(){	if (bi_valid > 8) {		put_short(bi_buf);	} else if (bi_valid > 0) {		put_byte(bi_buf);	}	bi_buf = 0;	bi_valid = 0;#ifdef DEBUG	bits_sent = (bits_sent + 7) & ~7;#endif}/* =========================================================================== * Copy a stored block to the zip file, storing first the length and its * one's complement if requested. */static void copy_block(char *buf, unsigned len, int header){	bi_windup();				/* align on byte boundary */	if (header) {		put_short((ush) len);		put_short((ush) ~ len);#ifdef DEBUG		bits_sent += 2 * 16;#endif	}#ifdef DEBUG	bits_sent += (ulg) len << 3;#endif	while (len--) {		put_byte(*buf++);	}}/* deflate.c -- compress data using the deflation algorithm * Copyright (C) 1992-1993 Jean-loup Gailly * This is free software; you can redistribute it and/or modify it under the * terms of the GNU General Public License, see the file COPYING. *//* *  PURPOSE * *      Identify new text as repetitions of old text within a fixed- *      length sliding window trailing behind the new text. * *  DISCUSSION * *      The "deflation" process depends on being able to identify portions *      of the input text which are identical to earlier input (within a *      sliding window trailing behind the input currently being processed). * *      The most straightforward technique turns out to be the fastest for *      most input files: try all possible matches and select the longest. *      The key feature of this algorithm is that insertions into the string *      dictionary are very simple and thus fast, and deletions are avoided *      completely. Insertions are performed at each input character, whereas *      string matches are performed only when the previous match ends. So it *      is preferable to spend more time in matches to allow very fast string *      insertions and avoid deletions. The matching algorithm for small *      strings is inspired from that of Rabin & Karp. A brute force approach *      is used to find longer strings when a small match has been found. *      A similar algorithm is used in comic (by Jan-Mark Wams) and freeze *      (by Leonid Broukhis). *         A previous version of this file used a more sophisticated algorithm *      (by Fiala and Greene) which is guaranteed to run in linear amortized *      time, but has a larger average cost, uses more memory and is patented. *      However the F&G algorithm may be faster for some highly redundant *      files if the parameter max_chain_length (described below) is too large. * *  ACKNOWLEDGEMENTS * *      The idea of lazy evaluation of matches is due to Jan-Mark Wams, and *      I found it in 'freeze' written by Leonid Broukhis. *      Thanks to many info-zippers for bug reports and testing. * *  REFERENCES * *      APPNOTE.TXT documentation file in PKZIP 1.93a distribution. * *      A description of the Rabin and Karp algorithm is given in the book *         "Algorithms" by R. Sedgewick, Addison-Wesley, p252. * *      Fiala,E.R., and Greene,D.H. *         Data Compression with Finite Windows, Comm.ACM, 32,4 (1989) 490-595 * *  INTERFACE * *      void lm_init (int pack_level, ush *flags) *          Initialize the "longest match" routines for a new file * *      ulg deflate (void) *          Processes a new input file and return its compressed length. Sets *          the compressed length, crc, deflate flags and internal file *          attributes. *//* =========================================================================== * Configuration parameters *//* Compile with MEDIUM_MEM to reduce the memory requirements or * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the * entire input file can be held in memory (not possible on 16 bit systems). * Warning: defining these symbols affects HASH_BITS (see below) and thus * affects the compression ratio. The compressed output * is still correct, and might even be smaller in some cases. */#ifdef SMALL_MEM#   define HASH_BITS  13		/* Number of bits used to hash strings */#endif#ifdef MEDIUM_MEM#   define HASH_BITS  14#endif#ifndef HASH_BITS#   define HASH_BITS  15   /* For portability to 16 bit machines, do not use values above 15. */#endif/* To save space (see unlzw.c), we overlay prev+head with tab_prefix and * window with tab_suffix. Check that we can do this: */#if (WSIZE<<1) > (1<<BITS)#  error cannot overlay window with tab_suffix and prev with tab_prefix0#endif#if HASH_BITS > BITS-1#  error cannot overlay head with tab_prefix1#endif#define HASH_SIZE (unsigned)(1<<HASH_BITS)#define HASH_MASK (HASH_SIZE-1)#define WMASK     (WSIZE-1)/* HASH_SIZE and WSIZE must be powers of two */#define NIL 0/* Tail of hash chains */#define FAST 4#define SLOW 2/* speed options for the general purpose bit flag */#ifndef TOO_FAR#  define TOO_FAR 4096#endif/* Matches of length 3 are discarded if their distance exceeds TOO_FAR *//* =========================================================================== * Local data used by the "longest match" routines. */typedef ush Pos;typedef unsigned IPos;/* A Pos is an index in the character window. We use short instead of int to * save space in the various tables. IPos is used only for parameter passing. *//* DECLARE(uch, window, 2L*WSIZE); *//* Sliding window. Input bytes are read into the second half of the window, * and move to the first half later to keep a dictionary of at least WSIZE * bytes. With this organization, matches are limited to a distance of * WSIZE-MAX_MATCH bytes, but this ensures that IO is always * performed with a length multiple of the block size. Also, it limits * the window size to 64K, which is quite useful on MSDOS. * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would * be less efficient). *//* DECLARE(Pos, prev, WSIZE); *//* Link to older string with same hash index. To limit the size of this * array to 64K, this link is maintained only for the last 32K strings. * An index in this array is thus a window index modulo 32K. *//* DECLARE(Pos, head, 1<<HASH_BITS); *//* Heads of the hash chains or NIL. */static const ulg window_size = (ulg) 2 * WSIZE;/* window size, 2*WSIZE except for MMAP or BIG_MEM, where it is the * input file length plus MIN_LOOKAHEAD. */static long block_start;/* window position at the beginning of the current output block. Gets * negative when the window is moved backwards. */static unsigned ins_h;			/* hash index of string to be inserted */#define H_SHIFT  ((HASH_BITS+MIN_MATCH-1)/MIN_MATCH)/* Number of bits by which ins_h and del_h must be shifted at each * input step. It must be such that after MIN_MATCH steps, the oldest * byte no longer takes part in the hash key, that is: *   H_SHIFT * MIN_MATCH >= HASH_BITS */static unsigned int prev_length;/* Length of the best match at previous step. Matches not greater than this * are discarded. This is used in the lazy match evaluation. */static unsigned strstart;			/* start of string to insert */static unsigned match_start;		/* start of matching string */static int eofile;				/* flag set at end of input file */static unsigned lookahead;		/* number of valid bytes ahead in window */static const unsigned max_chain_length=4096;/* To speed up deflation, hash chains are never searched beyond this length. * A higher limit improves compression ratio but degrades the speed. */static const unsigned int max_lazy_match=258;/* Attempt to find a better match only when the current match is strictly * smaller than this value. This mechanism is used only for compression * levels >= 4. */#define max_insert_length  max_lazy_match/* Insert new strings in the hash table only if the match length * is not greater than this length. This saves time but degrades compression. * max_insert_length is used only for compression levels <= 3. */static const unsigned good_match=32;/* Use a faster search when the previous match is longer than this *//* Values for max_lazy_match, good_match and max_chain_length, depending on * the desired pack level (0..9). The values given below have been tuned to * exclude worst case performance for pathological files. Better values may be * found for specific files. */static const int nice_match=258;			/* Stop searching when current match exceeds this *//* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 * For deflate_fast() (levels <= 3) good is ignored and lazy has a different * meaning. */#define EQUAL 0/* result of memcmp for equal strings *//* =========================================================================== *  Prototypes for local functions. */static void fill_window (void);static int longest_match (IPos cur_match);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品免费久久久久| 久久久久青草大香线综合精品| 国产乱码一区二区三区| 石原莉奈一区二区三区在线观看| 亚洲欧美日韩一区| 亚洲色图在线看| 亚洲特级片在线| 亚洲色大成网站www久久九九| 综合久久久久久| 亚洲精选一二三| 亚洲国产成人av| 日韩不卡一区二区三区| 美女诱惑一区二区| 毛片基地黄久久久久久天堂| 激情图片小说一区| 成人av午夜电影| 91福利国产精品| 91精品国产综合久久久蜜臀粉嫩| 欧美一区二区精品在线| 国产亚洲一本大道中文在线| 国产精品成人免费| 亚洲一区二区不卡免费| 免费成人av资源网| 国产a区久久久| 精品视频资源站| 精品对白一区国产伦| 国产精品蜜臀在线观看| 天天色综合成人网| 国产精品456露脸| 91成人在线观看喷潮| 欧美一级高清片| 中文在线一区二区| 婷婷一区二区三区| 白白色亚洲国产精品| 精品视频在线免费看| 国产婷婷色一区二区三区| 夜夜精品视频一区二区| 国产一区二区三区在线观看免费视频 | 美女免费视频一区二区| 成人性色生活片免费看爆迷你毛片| 99国产精品视频免费观看| 欧美一区二区三区的| 国产精品入口麻豆九色| 日韩制服丝袜先锋影音| 成人激情动漫在线观看| 日韩欧美精品在线视频| 一个色妞综合视频在线观看| 国产高清在线观看免费不卡| 欧美日韩你懂的| 国产精品高潮久久久久无| 美腿丝袜亚洲综合| 欧美日韩精品一区视频| 亚洲四区在线观看| 成人在线综合网| 精品黑人一区二区三区久久| 天堂精品中文字幕在线| 一本一本久久a久久精品综合麻豆 一本一道波多野结衣一区二区 | 国产91精品一区二区麻豆网站| 欧美三区在线观看| 久久久久久久久99精品| 美洲天堂一区二卡三卡四卡视频 | 精品在线你懂的| 3atv一区二区三区| 一区二区成人在线| 91免费国产在线| 国产精品久久久久影院老司| 国产一区二区导航在线播放| 日韩免费福利电影在线观看| 午夜成人免费视频| 欧美日韩在线不卡| 亚洲一区在线观看免费 | 中文字幕一区二区三区av| 国产最新精品免费| 久久人人爽爽爽人久久久| 紧缚奴在线一区二区三区| 精品国产凹凸成av人导航| 美女在线一区二区| 日韩一级黄色大片| 蜜乳av一区二区| 欧美电影免费观看高清完整版在| 天天色图综合网| 欧美不卡激情三级在线观看| 另类综合日韩欧美亚洲| 久久久久久久电影| 成人黄色777网| 一区二区三区av电影| 欧美性受极品xxxx喷水| 五月天久久比比资源色| 欧美一区二区三区影视| 久久99精品国产麻豆婷婷| 国产精品一品二品| 欧美影片第一页| 欧美日韩极品在线观看一区| 欧美成人精品3d动漫h| 国产激情91久久精品导航| 国产一区二区三区国产| 成人免费一区二区三区在线观看| 日韩欧美一级二级| 欧美日韩大陆一区二区| 欧美视频中文字幕| 欧洲激情一区二区| 91老司机福利 在线| 国产白丝网站精品污在线入口| 美女脱光内衣内裤视频久久网站 | 日韩和欧美一区二区| 亚洲欧洲日韩在线| 中文一区二区完整视频在线观看| 日韩欧美专区在线| 欧美日韩高清一区二区三区| 欧美在线视频日韩| 欧美自拍丝袜亚洲| 在线亚洲精品福利网址导航| 91污在线观看| 色噜噜狠狠一区二区三区果冻| 99久久国产综合色|国产精品| 99精品视频一区二区三区| 成人禁用看黄a在线| 成人深夜在线观看| 99riav一区二区三区| 99国产精品久久久久| 一本久久精品一区二区| 在线看日本不卡| 欧美二区三区的天堂| 日韩欧美国产一二三区| 欧美α欧美αv大片| 久久久久久久综合狠狠综合| 国产欧美日韩精品在线| 国产精品久久久久久久久动漫| 国产精品福利av| 伊人一区二区三区| 日本亚洲视频在线| 国产在线播精品第三| eeuss鲁一区二区三区| 91国产视频在线观看| 欧美一区二区视频在线观看2022| 精品国产1区2区3区| 亚洲三级电影网站| 午夜精品福利视频网站| 韩日欧美一区二区三区| av在线不卡免费看| 欧美福利电影网| 久久久激情视频| 亚洲午夜精品久久久久久久久| 免费成人在线影院| 99re成人在线| 欧美一区二区久久久| 国产精品久久久久aaaa樱花| 亚洲国产精品久久不卡毛片| 精品一区二区日韩| 色视频成人在线观看免| 欧美一区二区在线视频| 久久精品亚洲精品国产欧美kt∨ | 国产精品欧美精品| 亚洲18色成人| 国产成人精品aa毛片| 欧美午夜不卡在线观看免费| 久久免费偷拍视频| 亚洲成a人v欧美综合天堂下载 | 国产喷白浆一区二区三区| 亚洲天堂精品在线观看| 麻豆国产精品官网| 在线亚洲高清视频| 欧美极品xxx| 美女在线观看视频一区二区| www.日本不卡| 精品国产乱码久久| 亚洲图片有声小说| 丁香亚洲综合激情啪啪综合| 在线不卡的av| 亚洲桃色在线一区| 国产成人8x视频一区二区| 欧美日韩二区三区| 亚洲乱码中文字幕综合| 激情综合色综合久久| 欧美亚洲综合色| 国产精品另类一区| 韩国v欧美v日本v亚洲v| 69堂亚洲精品首页| 亚洲自拍都市欧美小说| 91亚洲精华国产精华精华液| 久久奇米777| 久久97超碰国产精品超碰| 欧美日韩高清影院| 亚洲综合男人的天堂| 97久久超碰国产精品| 久久久亚洲午夜电影| 免费精品视频在线| 91精品久久久久久久99蜜桃| 一区二区久久久久久| 色呦呦国产精品| 中文字幕一区av| 国产99久久久国产精品潘金 | 亚洲午夜三级在线| 91在线视频18| 亚洲欧美日韩综合aⅴ视频| 91一区二区在线| 亚洲卡通动漫在线| 91国偷自产一区二区三区成为亚洲经典 | 色先锋资源久久综合| 亚洲色图制服诱惑 |