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

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

?? infblock.c

?? ocx 代碼
?? C
字號:
/* infblock.c -- interpret and process block types to last block
 * Copyright (C) 1995-1996 Mark Adler
 * For conditions of distribution and use, see copyright notice in zlib.h 
 */

#include "zutil.h"
#include "infblock.h"
#include "inftrees.h"
#include "infcodes.h"
#include "infutil.h"

struct inflate_codes_state {int dummy;}; /* for buggy compilers */

/* Table for deflate from PKZIP's appnote.txt. */
local const uInt border[] = { /* Order of the bit length code lengths */
        16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15};

/*
   Notes beyond the 1.93a appnote.txt:

   1. Distance pointers never point before the beginning of the output
      stream.
   2. Distance pointers can point back across blocks, up to 32k away.
   3. There is an implied maximum of 7 bits for the bit length table and
      15 bits for the actual data.
   4. If only one code exists, then it is encoded using one bit.  (Zero
      would be more efficient, but perhaps a little confusing.)  If two
      codes exist, they are coded using one bit each (0 and 1).
   5. There is no way of sending zero distance codes--a dummy must be
      sent if there are none.  (History: a pre 2.0 version of PKZIP would
      store blocks with no distance codes, but this was discovered to be
      too harsh a criterion.)  Valid only for 1.93a.  2.04c does allow
      zero distance codes, which is sent as one code of zero bits in
      length.
   6. There are up to 286 literal/length codes.  Code 256 represents the
      end-of-block.  Note however that the static length tree defines
      288 codes just to fill out the Huffman codes.  Codes 286 and 287
      cannot be used though, since there is no length base or extra bits
      defined for them.  Similarily, there are up to 30 distance codes.
      However, static trees define 32 codes (all 5 bits) to fill out the
      Huffman codes, but the last two had better not show up in the data.
   7. Unzip can check dynamic Huffman blocks for complete code sets.
      The exception is that a single code would not be complete (see #4).
   8. The five bits following the block type is really the number of
      literal codes sent minus 257.
   9. Length codes 8,16,16 are interpreted as 13 length codes of 8 bits
      (1+6+6).  Therefore, to output three times the length, you output
      three codes (1+1+1), whereas to output four times the same length,
      you only need two codes (1+3).  Hmm.
  10. In the tree reconstruction algorithm, Code = Code + Increment
      only if BitLength(i) is not zero.  (Pretty obvious.)
  11. Correction: 4 Bits: # of Bit Length codes - 4     (4 - 19)
  12. Note: length code 284 can represent 227-258, but length code 285
      really is 258.  The last length deserves its own, short code
      since it gets used a lot in very redundant files.  The length
      258 is special since 258 - 3 (the min match length) is 255.
  13. The literal/length and distance code bit lengths are read as a
      single stream of lengths.  It is possible (and advantageous) for
      a repeat code (16, 17, or 18) to go across the boundary between
      the two sets of lengths.
 */


void inflate_blocks_reset(s, z, c)
inflate_blocks_statef *s;
z_streamp z;
uLongf *c;
{
  if (s->checkfn != Z_NULL)
    *c = s->check;
  if (s->mode == BTREE || s->mode == DTREE)
    ZFREE(z, s->sub.trees.blens);
  if (s->mode == CODES)
  {
    inflate_codes_free(s->sub.decode.codes, z);
    inflate_trees_free(s->sub.decode.td, z);
    inflate_trees_free(s->sub.decode.tl, z);
  }
  s->mode = TYPE;
  s->bitk = 0;
  s->bitb = 0;
  s->read = s->write = s->window;
  if (s->checkfn != Z_NULL)
    z->adler = s->check = (*s->checkfn)(0L, Z_NULL, 0);
  Trace((stderr, "inflate:   blocks reset\n"));
}


inflate_blocks_statef *inflate_blocks_new(z, c, w)
z_streamp z;
check_func c;
uInt w;
{
  inflate_blocks_statef *s;

  if ((s = (inflate_blocks_statef *)ZALLOC
       (z,1,sizeof(struct inflate_blocks_state))) == Z_NULL)
    return s;
  if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
  {
    ZFREE(z, s);
    return Z_NULL;
  }
  s->end = s->window + w;
  s->checkfn = c;
  s->mode = TYPE;
  Trace((stderr, "inflate:   blocks allocated\n"));
  inflate_blocks_reset(s, z, &s->check);
  return s;
}


#ifdef DEBUG
  extern uInt inflate_hufts;
#endif
int inflate_blocks(s, z, r)
inflate_blocks_statef *s;
z_streamp z;
int r;
{
  uInt t;               /* temporary storage */
  uLong b;              /* bit buffer */
  uInt k;               /* bits in bit buffer */
  Bytef *p;             /* input data pointer */
  uInt n;               /* bytes available there */
  Bytef *q;             /* output window write pointer */
  uInt m;               /* bytes to end of window or read pointer */

  /* copy input/output information to locals (UPDATE macro restores) */
  LOAD

  /* process input based on current state */
  while (1) switch (s->mode)
  {
    case TYPE:
      NEEDBITS(3)
      t = (uInt)b & 7;
      s->last = t & 1;
      switch (t >> 1)
      {
        case 0:                         /* stored */
          Trace((stderr, "inflate:     stored block%s\n",
                 s->last ? " (last)" : ""));
          DUMPBITS(3)
          t = k & 7;                    /* go to byte boundary */
          DUMPBITS(t)
          s->mode = LENS;               /* get length of stored block */
          break;
        case 1:                         /* fixed */
          Trace((stderr, "inflate:     fixed codes block%s\n",
                 s->last ? " (last)" : ""));
          {
            uInt bl, bd;
            inflate_huft *tl, *td;

            inflate_trees_fixed(&bl, &bd, &tl, &td);
            s->sub.decode.codes = inflate_codes_new(bl, bd, tl, td, z);
            if (s->sub.decode.codes == Z_NULL)
            {
              r = Z_MEM_ERROR;
              LEAVE
            }
            s->sub.decode.tl = Z_NULL;  /* don't try to free these */
            s->sub.decode.td = Z_NULL;
          }
          DUMPBITS(3)
          s->mode = CODES;
          break;
        case 2:                         /* dynamic */
          Trace((stderr, "inflate:     dynamic codes block%s\n",
                 s->last ? " (last)" : ""));
          DUMPBITS(3)
          s->mode = TABLE;
          break;
        case 3:                         /* illegal */
          DUMPBITS(3)
          s->mode = BAD;
          z->msg = (char*)"invalid block type";
          r = Z_DATA_ERROR;
          LEAVE
      }
      break;
    case LENS:
      NEEDBITS(32)
      if ((((~b) >> 16) & 0xffff) != (b & 0xffff))
      {
        s->mode = BAD;
        z->msg = (char*)"invalid stored block lengths";
        r = Z_DATA_ERROR;
        LEAVE
      }
      s->sub.left = (uInt)b & 0xffff;
      b = k = 0;                      /* dump bits */
      Tracev((stderr, "inflate:       stored length %u\n", s->sub.left));
      s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
      break;
    case STORED:
      if (n == 0)
        LEAVE
      NEEDOUT
      t = s->sub.left;
      if (t > n) t = n;
      if (t > m) t = m;
      zmemcpy(q, p, t);
      p += t;  n -= t;
      q += t;  m -= t;
      if ((s->sub.left -= t) != 0)
        break;
      Tracev((stderr, "inflate:       stored end, %lu total out\n",
              z->total_out + (q >= s->read ? q - s->read :
              (s->end - s->read) + (q - s->window))));
      s->mode = s->last ? DRY : TYPE;
      break;
    case TABLE:
      NEEDBITS(14)
      s->sub.trees.table = t = (uInt)b & 0x3fff;
#ifndef PKZIP_BUG_WORKAROUND
      if ((t & 0x1f) > 29 || ((t >> 5) & 0x1f) > 29)
      {
        s->mode = BAD;
        z->msg = (char*)"too many length or distance symbols";
        r = Z_DATA_ERROR;
        LEAVE
      }
#endif
      t = 258 + (t & 0x1f) + ((t >> 5) & 0x1f);
      if (t < 19)
        t = 19;
      if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
      {
        r = Z_MEM_ERROR;
        LEAVE
      }
      DUMPBITS(14)
      s->sub.trees.index = 0;
      Tracev((stderr, "inflate:       table sizes ok\n"));
      s->mode = BTREE;
    case BTREE:
      while (s->sub.trees.index < 4 + (s->sub.trees.table >> 10))
      {
        NEEDBITS(3)
        s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
        DUMPBITS(3)
      }
      while (s->sub.trees.index < 19)
        s->sub.trees.blens[border[s->sub.trees.index++]] = 0;
      s->sub.trees.bb = 7;
      t = inflate_trees_bits(s->sub.trees.blens, &s->sub.trees.bb,
                             &s->sub.trees.tb, z);
      if (t != Z_OK)
      {
        ZFREE(z, s->sub.trees.blens);
        r = t;
        if (r == Z_DATA_ERROR)
          s->mode = BAD;
        LEAVE
      }
      s->sub.trees.index = 0;
      Tracev((stderr, "inflate:       bits tree ok\n"));
      s->mode = DTREE;
    case DTREE:
      while (t = s->sub.trees.table,
             s->sub.trees.index < 258 + (t & 0x1f) + ((t >> 5) & 0x1f))
      {
        inflate_huft *h;
        uInt i, j, c;

        t = s->sub.trees.bb;
        NEEDBITS(t)
        h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
        t = h->word.what.Bits;
        c = h->more.Base;
        if (c < 16)
        {
          DUMPBITS(t)
          s->sub.trees.blens[s->sub.trees.index++] = c;
        }
        else /* c == 16..18 */
        {
          i = c == 18 ? 7 : c - 14;
          j = c == 18 ? 11 : 3;
          NEEDBITS(t + i)
          DUMPBITS(t)
          j += (uInt)b & inflate_mask[i];
          DUMPBITS(i)
          i = s->sub.trees.index;
          t = s->sub.trees.table;
          if (i + j > 258 + (t & 0x1f) + ((t >> 5) & 0x1f) ||
              (c == 16 && i < 1))
          {
            inflate_trees_free(s->sub.trees.tb, z);
            ZFREE(z, s->sub.trees.blens);
            s->mode = BAD;
            z->msg = (char*)"invalid bit length repeat";
            r = Z_DATA_ERROR;
            LEAVE
          }
          c = c == 16 ? s->sub.trees.blens[i - 1] : 0;
          do {
            s->sub.trees.blens[i++] = c;
          } while (--j);
          s->sub.trees.index = i;
        }
      }
      inflate_trees_free(s->sub.trees.tb, z);
      s->sub.trees.tb = Z_NULL;
      {
        uInt bl, bd;
        inflate_huft *tl, *td;
        inflate_codes_statef *c;

        bl = 9;         /* must be <= 9 for lookahead assumptions */
        bd = 6;         /* must be <= 9 for lookahead assumptions */
        t = s->sub.trees.table;
#ifdef DEBUG
      inflate_hufts = 0;
#endif
        t = inflate_trees_dynamic(257 + (t & 0x1f), 1 + ((t >> 5) & 0x1f),
                                  s->sub.trees.blens, &bl, &bd, &tl, &td, z);
        ZFREE(z, s->sub.trees.blens);
        if (t != Z_OK)
        {
          if (t == (uInt)Z_DATA_ERROR)
            s->mode = BAD;
          r = t;
          LEAVE
        }
        Tracev((stderr, "inflate:       trees ok, %d * %d bytes used\n",
              inflate_hufts, sizeof(inflate_huft)));
        if ((c = inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
        {
          inflate_trees_free(td, z);
          inflate_trees_free(tl, z);
          r = Z_MEM_ERROR;
          LEAVE
        }
        s->sub.decode.codes = c;
        s->sub.decode.tl = tl;
        s->sub.decode.td = td;
      }
      s->mode = CODES;
    case CODES:
      UPDATE
      if ((r = inflate_codes(s, z, r)) != Z_STREAM_END)
        return inflate_flush(s, z, r);
      r = Z_OK;
      inflate_codes_free(s->sub.decode.codes, z);
      inflate_trees_free(s->sub.decode.td, z);
      inflate_trees_free(s->sub.decode.tl, z);
      LOAD
      Tracev((stderr, "inflate:       codes end, %lu total out\n",
              z->total_out + (q >= s->read ? q - s->read :
              (s->end - s->read) + (q - s->window))));
      if (!s->last)
      {
        s->mode = TYPE;
        break;
      }
      if (k > 7)              /* return unused byte, if any */
      {
        Assert(k < 16, "inflate_codes grabbed too many bytes")
        k -= 8;
        n++;
        p--;                    /* can always return one */
      }
      s->mode = DRY;
    case DRY:
      FLUSH
      if (s->read != s->write)
        LEAVE
      s->mode = DONE;
    case DONE:
      r = Z_STREAM_END;
      LEAVE
    case BAD:
      r = Z_DATA_ERROR;
      LEAVE
    default:
      r = Z_STREAM_ERROR;
      LEAVE
  }
}


int inflate_blocks_free(s, z, c)
inflate_blocks_statef *s;
z_streamp z;
uLongf *c;
{
  inflate_blocks_reset(s, z, c);
  ZFREE(z, s->window);
  ZFREE(z, s);
  Trace((stderr, "inflate:   blocks freed\n"));
  return Z_OK;
}


void inflate_set_dictionary(s, d, n)
inflate_blocks_statef *s;
const Bytef *d;
uInt  n;
{
  zmemcpy((charf *)s->window, d, n);
  s->read = s->write = s->window + n;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人av午夜电影| 欧美人xxxx| 欧美精品久久一区| 日本一区二区综合亚洲| 亚洲大片在线观看| 成人黄色国产精品网站大全在线免费观看 | 国产精品青草综合久久久久99| 精品粉嫩aⅴ一区二区三区四区| 亚洲男人的天堂在线aⅴ视频| 国产一区二区影院| 欧美人牲a欧美精品| 亚洲视频每日更新| 成人精品视频一区二区三区 | 欧美日韩一区视频| 国产精品久久久久久久蜜臀| 久久国产人妖系列| 欧美人动与zoxxxx乱| 亚洲女人的天堂| av网站免费线看精品| 欧美国产97人人爽人人喊| 蜜臀国产一区二区三区在线播放 | 久久9热精品视频| 欧美丝袜丝nylons| 一区二区三区欧美日| 99热国产精品| 国产精品久久毛片| 成a人片国产精品| 国产精品美女久久久久aⅴ| 国产伦精品一区二区三区免费| 日韩欧美高清dvd碟片| 欧美日韩aaa| 亚洲www啪成人一区二区麻豆| 不卡的av网站| 成人免费一区二区三区视频| 大桥未久av一区二区三区中文| 久久婷婷色综合| 国产一区二区三区免费在线观看| 欧美白人最猛性xxxxx69交| 国产综合色视频| 久久精品视频免费| 国产精品亚洲а∨天堂免在线| 久久久.com| 97精品久久久久中文字幕 | 一区二区成人在线观看| 91麻豆产精品久久久久久| 亚洲毛片av在线| 精品视频123区在线观看| 欧美视频一二三区| 亚洲成人tv网| 日韩午夜在线观看视频| 狠狠色狠狠色合久久伊人| 精品盗摄一区二区三区| 国产成人福利片| 亚洲欧美电影一区二区| 精品视频999| 极品美女销魂一区二区三区| 欧美高清在线一区二区| 色综合久久88色综合天天6| 亚洲18女电影在线观看| 精品av久久707| 一本久久a久久精品亚洲| 亚洲成av人综合在线观看| 久久综合色8888| 色8久久人人97超碰香蕉987| 日本特黄久久久高潮| 国产欧美日韩三区| 欧美三级日韩三级| 国产成人自拍网| 亚洲一区免费在线观看| 欧美xxxxx裸体时装秀| 日日夜夜一区二区| 精品sm捆绑视频| 色综合一个色综合| 久久成人免费日本黄色| 国产精品久久午夜| 日韩午夜激情视频| jlzzjlzz亚洲日本少妇| 爽好久久久欧美精品| 日本一区二区久久| 欧美精品乱码久久久久久| 成人国产免费视频| 日本三级亚洲精品| 亚洲日本中文字幕区| 日韩一级片在线观看| 91麻豆swag| 国产69精品久久99不卡| 亚洲国产一二三| 国产精品久久久久aaaa| 日韩精品一区在线| 欧美色综合网站| 国产精品免费视频观看| 91麻豆swag| 国产成人精品三级麻豆| 久久国产人妖系列| 亚洲成a人片综合在线| 日韩毛片视频在线看| 国产欧美精品日韩区二区麻豆天美| 欧美男女性生活在线直播观看| 色婷婷一区二区三区四区| 国产+成+人+亚洲欧洲自线| 精品一区二区三区免费| 天天操天天综合网| 亚洲国产aⅴ成人精品无吗| 自拍偷拍国产精品| 亚洲欧洲日韩综合一区二区| 国产亚洲欧美在线| 国产午夜精品一区二区三区视频 | 亚洲123区在线观看| 亚洲视频每日更新| 中文字幕一区二区不卡| 国产精品久久久久永久免费观看 | 91麻豆精品国产自产在线观看一区| 成人手机电影网| 国产一区二区三区av电影| 丝袜a∨在线一区二区三区不卡| 亚洲一区二区精品久久av| 一区二区三区欧美在线观看| 亚洲精品久久嫩草网站秘色| 亚洲图片你懂的| 亚洲精品福利视频网站| 一个色在线综合| 午夜免费久久看| 青娱乐精品视频在线| 久久精品国产**网站演员| 久久国产麻豆精品| 国产九色sp调教91| 成人高清在线视频| 色综合天天综合| 色av一区二区| 欧美一区二区在线视频| 日韩欧美一区二区视频| 欧美成人艳星乳罩| 国产亚洲欧美色| 亚洲欧美成人一区二区三区| 亚洲国产一二三| 青青草伊人久久| 国产91精品一区二区麻豆网站| 成人午夜电影网站| 日本高清视频一区二区| 欧美日本一道本| 久久久亚洲精品石原莉奈| 综合久久综合久久| 亚洲综合视频在线观看| 青青草原综合久久大伊人精品 | 一本色道亚洲精品aⅴ| 欧美三电影在线| 精品国产不卡一区二区三区| 国产精品进线69影院| 亚洲va中文字幕| 国产成人免费视频| 欧美三级电影在线观看| 久久久久九九视频| 亚洲综合一区二区三区| 国产乱码精品1区2区3区| 色天天综合色天天久久| 日韩精品在线看片z| 亚洲免费观看高清在线观看| 三级欧美在线一区| 国产成人精品在线看| 欧美丰满少妇xxxxx高潮对白| 久久在线观看免费| 亚洲一区二区av在线| 风间由美性色一区二区三区| 在线成人午夜影院| 国产精品理论在线观看| 久久成人久久鬼色| 欧美丝袜丝交足nylons图片| 亚洲国产岛国毛片在线| 麻豆91在线播放免费| 欧美亚洲一区二区三区四区| 久久精品视频一区二区三区| 日韩经典中文字幕一区| 99久久精品情趣| 久久久久久久综合色一本| 午夜精品在线视频一区| 色综合一区二区三区| 中文字幕av资源一区| 国产美女久久久久| 91精品国产入口| 亚洲图片欧美综合| 色一情一伦一子一伦一区| 欧美激情一区二区三区蜜桃视频| 麻豆精品在线看| 欧美顶级少妇做爰| 一区二区三区中文在线| 成人一级黄色片| 久久久久久免费毛片精品| 日本午夜精品视频在线观看| 欧美日本一区二区在线观看| 一区二区三区中文在线观看| 99精品欧美一区二区蜜桃免费| 日本一区二区三区国色天香 | 在线不卡中文字幕| 亚洲精品乱码久久久久久久久| 成人中文字幕在线| 久久久久久亚洲综合影院红桃| 久久精品久久99精品久久| 欧美一区二区三区免费| 免费在线视频一区| 日韩欧美一卡二卡|