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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? deflate.h

?? 一般壓縮文件都沒密碼
?? H
字號(hào):
/* deflate.h -- internal compression state
 * Copyright (C) 1995-1998 Jean-loup Gailly
 * For conditions of distribution and use, see copyright notice in zlib.h 
 */

/* WARNING: this file should *not* be used by applications. It is
   part of the implementation of the compression library and is
   subject to change. Applications should only use zlib.h.
 */

/* @(#) $Id$ */

#ifndef _DEFLATE_H
#define _DEFLATE_H

#include "zutil.h"

/* ===========================================================================
 * Internal compression state.
 */

#define LENGTH_CODES 29
/* number of length codes, not counting the special END_BLOCK code */

#define LITERALS  256
/* number of literal bytes 0..255 */

#define L_CODES (LITERALS+1+LENGTH_CODES)
/* number of Literal or Length codes, including the END_BLOCK code */

#define D_CODES   30
/* number of distance codes */

#define BL_CODES  19
/* number of codes used to transfer the bit lengths */

#define HEAP_SIZE (2*L_CODES+1)
/* maximum heap size */

#define MAX_BITS 15
/* All codes must not exceed MAX_BITS bits */

#define INIT_STATE    42
#define BUSY_STATE   113
#define FINISH_STATE 666
/* Stream status */


/* Data structure describing a single value and its code string. */
typedef struct ct_data_s {
    union {
        unsigned short  freq;       /* frequency count */
        unsigned short  code;       /* bit string */
    } fc;
    union {
        unsigned short  dad;        /* father node in Huffman tree */
        unsigned short  len;        /* length of bit string */
    } dl;
} ct_data;

#define Freq fc.freq
#define Code fc.code
#define Dad  dl.dad
#define Len  dl.len

typedef struct static_tree_desc_s  static_tree_desc;

typedef struct tree_desc_s {
    ct_data *dyn_tree;           /* the dynamic tree */
    int     max_code;            /* largest code with non zero frequency */
    static_tree_desc *stat_desc; /* the corresponding static tree */
} tree_desc;

typedef unsigned short 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.
 */

typedef struct internal_state {
    z_streamp strm;      /* pointer back to this zlib stream */
    int   status;        /* as the name implies */
    BYTE *pending_buf;  /* output still pending */
    unsigned long   pending_buf_size; /* size of pending_buf */
    BYTE *pending_out;  /* next pending byte to output to the stream */
    int   pending;       /* nb of bytes in the pending buffer */
    int   noheader;      /* suppress zlib header and adler32 */
    BYTE  data_type;     /* UNKNOWN, BINARY or ASCII */
    BYTE  method;        /* STORED (for zip only) or DEFLATED */
    int   last_flush;    /* value of flush param for previous deflate call */

                /* used by deflate.c: */

    unsigned int  w_size;        /* LZ77 window size (32K by default) */
    unsigned int  w_bits;        /* log2(w_size)  (8..16) */
    unsigned int  w_mask;        /* w_size - 1 */

    BYTE *window;
    /* 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: use the user input buffer as sliding window.
     */

    unsigned long window_size;
    /* Actual size of window: 2*wSize, except when the user input buffer
     * is directly used as sliding window.
     */

    Pos *prev;
    /* 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.
     */

    Pos *head; /* Heads of the hash chains or NIL. */

    unsigned int  ins_h;          /* hash index of string to be inserted */
    unsigned int  hash_size;      /* number of elements in hash table */
    unsigned int  hash_bits;      /* log2(hash_size) */
    unsigned int  hash_mask;      /* hash_size-1 */

    unsigned int  hash_shift;
    /* Number of bits by which ins_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:
     *   hash_shift * MIN_MATCH >= hash_bits
     */

    long block_start;
    /* Window position at the beginning of the current output block. Gets
     * negative when the window is moved backwards.
     */

    unsigned int match_length;           /* length of best match */
    IPos prev_match;             /* previous match */
    int match_available;         /* set if previous match exists */
    unsigned int strstart;               /* start of string to insert */
    unsigned int match_start;            /* start of matching string */
    unsigned int lookahead;              /* number of valid bytes ahead in window */

    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.
     */

    unsigned int max_chain_length;
    /* To speed up deflation, hash chains are never searched beyond this
     * length.  A higher limit improves compression ratio but degrades the
     * speed.
     */

    unsigned int max_lazy_match;
    /* 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.
     */

    int level;    /* compression level (1..9) */
    int strategy; /* favor or force Huffman coding*/

    unsigned int good_match;
    /* Use a faster search when the previous match is longer than this */

    int nice_match; /* Stop searching when current match exceeds this */

                /* used by trees.c: */
    /* Didn't use ct_data typedef below to supress compiler warning */
    struct ct_data_s dyn_ltree[HEAP_SIZE];   /* literal and length tree */
    struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
    struct ct_data_s bl_tree[2*BL_CODES+1];  /* Huffman tree for bit lengths */

    struct tree_desc_s l_desc;               /* desc. for literal tree */
    struct tree_desc_s d_desc;               /* desc. for distance tree */
    struct tree_desc_s bl_desc;              /* desc. for bit length tree */

    unsigned short bl_count[MAX_BITS+1];
    /* number of codes at each bit length for an optimal tree */

    int heap[2*L_CODES+1];      /* heap used to build the Huffman trees */
    int heap_len;               /* number of elements in the heap */
    int heap_max;               /* element of largest frequency */
    /* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used.
     * The same heap array is used to build all trees.
     */

    BYTE depth[2*L_CODES+1];
    /* Depth of each subtree used as tie breaker for trees of equal frequency
     */

    unsigned char *l_buf;          /* buffer for literals or lengths */

    unsigned int  lit_bufsize;
    /* Size of match buffer for literals/lengths.  There are 4 reasons for
     * limiting lit_bufsize to 64K:
     *   - frequencies can be kept in 16 bit counters
     *   - if compression is not successful for the first block, all input
     *     data is still in the window so we can still emit a stored block even
     *     when input comes from standard input.  (This can also be done for
     *     all blocks if lit_bufsize is not greater than 32K.)
     *   - if compression is not successful for a file smaller than 64K, we can
     *     even emit a stored file instead of a stored block (saving 5 bytes).
     *     This is applicable only for zip (not gzip or zlib).
     *   - creating new Huffman trees less frequently may not provide fast
     *     adaptation to changes in the input data statistics. (Take for
     *     example a binary file with poorly compressible code followed by
     *     a highly compressible string table.) Smaller buffer sizes give
     *     fast adaptation but have of course the overhead of transmitting
     *     trees more frequently.
     *   - I can't count above 4
     */

    unsigned int last_lit;      /* running index in l_buf */

    unsigned short *d_buf;
    /* Buffer for distances. To simplify the code, d_buf and l_buf have
     * the same number of elements. To use different lengths, an extra flag
     * array would be necessary.
     */

    unsigned long opt_len;        /* bit length of current block with optimal trees */
    unsigned long static_len;     /* bit length of current block with static trees */
    unsigned int matches;       /* number of string matches in current block */
    int last_eob_len;   /* bit length of EOB code for last block */

    unsigned short bi_buf;
    /* Output buffer. bits are inserted starting at the bottom (least
     * significant bits).
     */
    int bi_valid;
    /* Number of valid bits in bi_buf.  All bits above the last valid bit
     * are always zero.
     */

} deflate_state;

/* Output a byte on the stream.
 * IN assertion: there is enough room in pending_buf.
 */
#define put_byte(s, c) {s->pending_buf[s->pending++] = (c);}


#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
/* Minimum amount of lookahead, except at the end of the input file.
 * See deflate.c for comments about the MIN_MATCH+1.
 */

#define MAX_DIST(s)  ((s)->w_size-MIN_LOOKAHEAD)
/* In order to simplify the code, particularly on 16 bit machines, match
 * distances are limited to MAX_DIST instead of WSIZE.
 */

        /* in trees.c */
void _tr_init       (deflate_state *s);
int  _tr_tally      (deflate_state *s, unsigned dist, unsigned lc);
void _tr_flush_block(deflate_state *s, char *buf, unsigned long stored_len, int eof);
void _tr_align      (deflate_state *s);
void _tr_stored_block(deflate_state *s, char *buf, unsigned long stored_len, int eof);

#define d_code(dist) \
   ((dist) < 256 ? _dist_code[dist] : _dist_code[256+((dist)>>7)])
/* Mapping from a distance to a distance code. dist is the distance - 1 and
 * must not have side effects. _dist_code[256] and _dist_code[257] are never
 * used.
 */

extern const BYTE _length_code[];
extern const BYTE _dist_code[];

# define _tr_tally_lit(s, c, flush) \
  { BYTE cc = (c); \
    s->d_buf[s->last_lit] = 0; \
    s->l_buf[s->last_lit++] = cc; \
    s->dyn_ltree[cc].Freq++; \
    flush = (s->last_lit == s->lit_bufsize-1); \
   }
# define _tr_tally_dist(s, distance, length, flush) \
  { BYTE len = (length); \
    unsigned short dist = (distance); \
    s->d_buf[s->last_lit] = dist; \
    s->l_buf[s->last_lit++] = len; \
    dist--; \
    s->dyn_ltree[_length_code[len]+LITERALS+1].Freq++; \
    s->dyn_dtree[d_code(dist)].Freq++; \
    flush = (s->last_lit == s->lit_bufsize-1); \
  }

#endif  /*_DEFLATE_H*/

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美一区二区二区| 丝袜美腿成人在线| 秋霞国产午夜精品免费视频| 成人av在线一区二区| 欧美精品粉嫩高潮一区二区| 国产人伦精品一区二区| 亚洲不卡av一区二区三区| 激情图区综合网| 欧美性大战久久| 国产精品素人一区二区| 丝袜亚洲另类丝袜在线| 99久久精品免费| 精品免费视频一区二区| 久久精品在线免费观看| 一区二区三区在线免费观看| 亚洲国产日韩精品| 高清av一区二区| 欧美精三区欧美精三区| 中文字幕一区二区三区视频 | 成人国产精品免费观看动漫| 欧美精品乱码久久久久久按摩| 国产精品久线在线观看| 精品一区二区三区久久| 欧美日韩成人在线| 亚洲欧美日韩成人高清在线一区| 国产一区二区导航在线播放| 欧美精品 国产精品| 亚洲美女少妇撒尿| 成人免费黄色大片| 精品久久久久久亚洲综合网| 午夜影院久久久| 一本色道久久综合狠狠躁的推荐| 国产色产综合色产在线视频| 看国产成人h片视频| 欧美性色综合网| 亚洲欧美日韩小说| av一二三不卡影片| 国产欧美精品一区二区色综合朱莉| 日韩精品乱码免费| 欧美色图激情小说| 一区二区三区日韩精品| 99精品一区二区三区| 国产色综合久久| 国产在线精品一区二区三区不卡 | 国产精品一区久久久久| 欧美va亚洲va国产综合| 蜜桃久久久久久久| 91精品国产色综合久久不卡蜜臀| 亚洲一级在线观看| 在线观看不卡视频| 亚洲精品国产一区二区精华液| 99精品久久只有精品| 欧美高清一级片在线观看| 国产成人精品影视| 国产精品视频一二三区| 成人美女视频在线观看| 国产精品毛片久久久久久久 | 中文字幕成人av| 久久er99精品| 欧美成人乱码一区二区三区| 久久97超碰色| 久久嫩草精品久久久精品一| 国产在线精品视频| 久久久综合网站| 国产.欧美.日韩| 国产精品动漫网站| 91女厕偷拍女厕偷拍高清| 亚洲久草在线视频| 欧美亚洲精品一区| 三级精品在线观看| 日韩女优制服丝袜电影| 国产一区二区三区av电影 | 91极品视觉盛宴| 舔着乳尖日韩一区| 日韩欧美一二区| 国产乱色国产精品免费视频| 国产欧美日韩精品一区| 91麻豆精品视频| 亚洲电影一区二区| 日韩一区二区三区在线视频| 国产一区91精品张津瑜| 国产精品久久久久aaaa| 91行情网站电视在线观看高清版| 亚洲成国产人片在线观看| 日韩欧美自拍偷拍| 国产精品1024| 亚洲免费在线观看| 制服丝袜av成人在线看| 狠狠色综合播放一区二区| 亚洲国产精品精华液2区45| 91免费在线播放| 午夜精品久久一牛影视| 久久九九影视网| 91麻豆自制传媒国产之光| 亚洲国产一区在线观看| 欧美mv和日韩mv的网站| 不卡高清视频专区| 亚洲福利电影网| 久久久久成人黄色影片| 99免费精品在线观看| 亚洲一区二区三区激情| 欧美一区二区美女| 国产乱人伦偷精品视频免下载 | 精品视频在线免费看| 精品亚洲成a人在线观看| 中文字幕一区二区三| 91精品免费观看| 成人激情综合网站| 天天综合网天天综合色| 中文字幕亚洲一区二区av在线| 777午夜精品视频在线播放| 国产在线播放一区三区四| 一个色综合网站| 国产三级欧美三级| 4438亚洲最大| 99精品久久免费看蜜臀剧情介绍| 免费成人在线网站| 亚洲女同ⅹxx女同tv| 欧美一级二级三级蜜桃| 91福利在线看| 国产成人午夜电影网| 天堂久久久久va久久久久| 国产精品不卡在线| 精品国产一二三区| 欧美亚洲动漫另类| 国产精品1区2区3区在线观看| 亚洲成人你懂的| 亚洲视频在线一区| 国产亚洲欧美日韩日本| 欧美性受xxxx| 色综合色狠狠综合色| 国产精品一区在线观看你懂的| 五月婷婷综合网| 亚洲欧洲韩国日本视频| 久久免费偷拍视频| 91精品福利在线一区二区三区| 91视频在线看| 久久精品国产99久久6| 国产精品久久久久久久久免费樱桃 | 国产亚洲欧美一区在线观看| 91精品免费观看| 欧美探花视频资源| 99r国产精品| 国产成人一区二区精品非洲| 免费看欧美女人艹b| 亚洲夂夂婷婷色拍ww47| 亚洲欧美在线视频| 国产日韩v精品一区二区| 欧美电影免费观看高清完整版在| 色狠狠一区二区| 91免费国产在线| 成人福利视频网站| 国产成人精品www牛牛影视| 久久99精品国产.久久久久| 日韩精品电影在线| 亚洲大片精品永久免费| 亚洲一区二区视频在线| 依依成人精品视频| 自拍视频在线观看一区二区| 国产精品国产三级国产三级人妇 | av一区二区三区在线| 国产精品99久| 国产精品一区2区| 精品在线免费视频| 久久97超碰色| 韩国成人福利片在线播放| 久久精品72免费观看| 男女性色大片免费观看一区二区| 午夜亚洲国产au精品一区二区| 亚洲无线码一区二区三区| 亚洲成人精品一区| 亚洲成av人片| 天堂蜜桃91精品| 日一区二区三区| 免费成人深夜小野草| 青青草91视频| 激情综合色丁香一区二区| 久久99久久99| 国产精品1024久久| 不卡av在线网| 91免费精品国自产拍在线不卡| 色综合久久中文字幕综合网| 在线免费观看日韩欧美| 欧美视频在线不卡| 91精品国产欧美一区二区成人| 日韩情涩欧美日韩视频| 久久亚洲捆绑美女| 欧美国产一区在线| ...xxx性欧美| 一区二区国产盗摄色噜噜| 亚洲国产日日夜夜| 日韩不卡手机在线v区| 久久激情五月激情| 国产精品一区二区久久精品爱涩| 成人在线视频首页| 色综合久久中文综合久久牛| 一本一本久久a久久精品综合麻豆| 91免费在线视频观看| 91视频精品在这里| 日本韩国欧美在线|