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

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

?? deflate.c

?? tftp client sorser code,Please download it and compolie it ,byebye
?? C
?? 第 1 頁 / 共 2 頁
字號:
#else    register uch *strend = window + strstart + MAX_MATCH;    register uch scan_end1  = scan[best_len-1];    register uch scan_end   = scan[best_len];#endif    /* Do not waste too much time if we already have a good match: */    if (prev_length >= good_match) {        chain_length >>= 2;    }    Assert(strstart <= window_size-MIN_LOOKAHEAD, "insufficient lookahead");    do {        Assert(cur_match < strstart, "no future");        match = window + cur_match;        /* Skip to next match if the match length cannot increase         * or if the match length is less than 2:         */#if (defined(UNALIGNED_OK) && MAX_MATCH == 258)        /* This code assumes sizeof(unsigned short) == 2. Do not use         * UNALIGNED_OK if your compiler uses a different size.         */        if (*(ush*)(match+best_len-1) != scan_end ||            *(ush*)match != scan_start) continue;        /* It is not necessary to compare scan[2] and match[2] since they are         * always equal when the other bytes match, given that the hash keys         * are equal and that HASH_BITS >= 8. Compare 2 bytes at a time at         * strstart+3, +5, ... up to strstart+257. We check for insufficient         * lookahead only every 4th comparison; the 128th check will be made         * at strstart+257. If MAX_MATCH-2 is not a multiple of 8, it is         * necessary to put more guard bytes at the end of the window, or         * to check more often for insufficient lookahead.         */        scan++, match++;        do {        } while (*(ush*)(scan+=2) == *(ush*)(match+=2) &&                 *(ush*)(scan+=2) == *(ush*)(match+=2) &&                 *(ush*)(scan+=2) == *(ush*)(match+=2) &&                 *(ush*)(scan+=2) == *(ush*)(match+=2) &&                 scan < strend);        /* The funny "do {}" generates better code on most compilers */        /* Here, scan <= window+strstart+257 */        Assert(scan <= window+(unsigned)(window_size-1), "wild scan");        if (*scan == *match) scan++;        len = (MAX_MATCH - 1) - (int)(strend-scan);        scan = strend - (MAX_MATCH-1);#else /* UNALIGNED_OK */        if (match[best_len]   != scan_end  ||            match[best_len-1] != scan_end1 ||            *match            != *scan     ||            *++match          != scan[1])      continue;        /* The check at best_len-1 can be removed because it will be made         * again later. (This heuristic is not always a win.)         * It is not necessary to compare scan[2] and match[2] since they         * are always equal when the other bytes match, given that         * the hash keys are equal and that HASH_BITS >= 8.         */        scan += 2, match++;        /* We check for insufficient lookahead only every 8th comparison;         * the 256th check will be made at strstart+258.         */        do {        } while (*++scan == *++match && *++scan == *++match &&                 *++scan == *++match && *++scan == *++match &&                 *++scan == *++match && *++scan == *++match &&                 *++scan == *++match && *++scan == *++match &&                 scan < strend);        len = MAX_MATCH - (int)(strend - scan);        scan = strend - MAX_MATCH;#endif /* UNALIGNED_OK */        if (len > best_len) {            match_start = cur_match;            best_len = len;            if (len >= nice_match) break;#ifdef UNALIGNED_OK            scan_end = *(ush*)(scan+best_len-1);#else            scan_end1  = scan[best_len-1];            scan_end   = scan[best_len];#endif        }    } while ((cur_match = prev[cur_match & WMASK]) > limit	     && --chain_length != 0);    return best_len;}#endif /* ASMV */#ifdef DEBUG/* =========================================================================== * Check that the match at match_start is indeed a match. */local void check_match(start, match, length)    IPos start, match;    int length;{    /* check that the match is indeed a match */    if (memcmp((char*)window + match,                (char*)window + start, length) != EQUAL) {        fprintf(stderr,            " start %d, match %d, length %d\n",            start, match, length);        error("invalid match");    }    if (verbose > 1) {        fprintf(stderr,"\\[%d,%d]", start-match, length);        do { putc(window[start++], stderr); } while (--length != 0);    }}#else#  define check_match(start, match, length)#endif/* =========================================================================== * Fill the window when the lookahead becomes insufficient. * Updates strstart and lookahead, and sets eofile if end of input file. * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0 * OUT assertions: at least one byte has been read, or eofile is set; *    file reads are performed for at least two bytes (required for the *    translate_eol option). */local void fill_window(){    register unsigned n, m;    unsigned more = (unsigned)(window_size - (ulg)lookahead - (ulg)strstart);    /* Amount of free space at the end of the window. */    /* If the window is almost full and there is insufficient lookahead,     * move the upper half to the lower one to make room in the upper half.     */    if (more == (unsigned)EOF) {        /* Very unlikely, but possible on 16 bit machine if strstart == 0         * and lookahead == 1 (input done one byte at time)         */        more--;    } else if (strstart >= WSIZE+MAX_DIST) {        /* By the IN assertion, the window is not empty so we can't confuse         * more == 0 with more == 64K on a 16 bit machine.         */        Assert(window_size == (ulg)2*WSIZE, "no sliding with BIG_MEM");        memcpy((char*)window, (char*)window+WSIZE, (unsigned)WSIZE);        match_start -= WSIZE;        strstart    -= WSIZE; /* we now have strstart >= MAX_DIST: */        block_start -= (long) WSIZE;        for (n = 0; n < HASH_SIZE; n++) {            m = head[n];            head[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);        }        for (n = 0; n < WSIZE; n++) {            m = prev[n];            prev[n] = (Pos)(m >= WSIZE ? m-WSIZE : NIL);            /* If n is not on any hash chain, prev[n] is garbage but             * its value will never be used.             */        }        more += WSIZE;    }    /* At this point, more >= 2 */    if (!eofile) {        n = read_buf((char*)window+strstart+lookahead, more);        if (n == 0 || n == (unsigned)EOF) {            eofile = 1;        } else {            lookahead += n;        }    }}/* =========================================================================== * Flush the current block, with given end-of-file flag. * IN assertion: strstart is set to the end of the current match. */#define FLUSH_BLOCK(eof) \   flush_block(block_start >= 0L ? (char*)&window[(unsigned)block_start] : \                (char*)NULL, (long)strstart - block_start, (eof))/* =========================================================================== * Processes a new input file and return its compressed length. This * function does not perform lazy evaluationof matches and inserts * new strings in the dictionary only for unmatched strings or for short * matches. It is used only for the fast compression options. */local ulg deflate_fast(){    IPos hash_head; /* head of the hash chain */    int flush;      /* set if current block must be flushed */    unsigned match_length = 0;  /* length of best match */    prev_length = MIN_MATCH-1;    while (lookahead != 0) {        /* Insert the string window[strstart .. strstart+2] in the         * dictionary, and set hash_head to the head of the hash chain:         */        INSERT_STRING(strstart, hash_head);        /* Find the longest match, discarding those <= prev_length.         * At this point we have always match_length < MIN_MATCH         */        if (hash_head != NIL && strstart - hash_head <= MAX_DIST) {            /* To simplify the code, we prevent matches with the string             * of window index 0 (in particular we have to avoid a match             * of the string with itself at the start of the input file).             */            match_length = longest_match (hash_head);            /* longest_match() sets match_start */            if (match_length > lookahead) match_length = lookahead;        }        if (match_length >= MIN_MATCH) {            check_match(strstart, match_start, match_length);            flush = ct_tally(strstart-match_start, match_length - MIN_MATCH);            lookahead -= match_length;	    /* Insert new strings in the hash table only if the match length             * is not too large. This saves time but degrades compression.             */            if (match_length <= max_insert_length) {                match_length--; /* string at strstart already in hash table */                do {                    strstart++;                    INSERT_STRING(strstart, hash_head);                    /* strstart never exceeds WSIZE-MAX_MATCH, so there are                     * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH                     * these bytes are garbage, but it does not matter since                     * the next lookahead bytes will be emitted as literals.                     */                } while (--match_length != 0);	        strstart++;             } else {	        strstart += match_length;	        match_length = 0;	        ins_h = window[strstart];	        UPDATE_HASH(ins_h, window[strstart+1]);#if MIN_MATCH != 3                Call UPDATE_HASH() MIN_MATCH-3 more times#endif            }        } else {            /* No match, output a literal byte */            Tracevv((stderr,"%c",window[strstart]));            flush = ct_tally (0, window[strstart]);            lookahead--;	    strstart++;         }        if (flush) FLUSH_BLOCK(0), block_start = strstart;        /* Make sure that we always have enough lookahead, except         * at the end of the input file. We need MAX_MATCH bytes         * for the next match, plus MIN_MATCH bytes to insert the         * string following the next match.         */        while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();    }    return FLUSH_BLOCK(1); /* eof */}/* =========================================================================== * Same as above, but achieves better compression. We use a lazy * evaluation for matches: a match is finally adopted only if there is * no better match at the next window position. */ulg deflate(){    IPos hash_head;          /* head of hash chain */    IPos prev_match;         /* previous match */    int flush;               /* set if current block must be flushed */    int match_available = 0; /* set if previous match exists */    register unsigned match_length = MIN_MATCH-1; /* length of best match */#ifdef DEBUG    extern long isize;        /* byte length of input file, for debug only */#endif    if (compr_level <= 3) return deflate_fast(); /* optimized for speed */    /* Process the input block. */    while (lookahead != 0) {        /* Insert the string window[strstart .. strstart+2] in the         * dictionary, and set hash_head to the head of the hash chain:         */        INSERT_STRING(strstart, hash_head);        /* Find the longest match, discarding those <= prev_length.         */        prev_length = match_length, prev_match = match_start;        match_length = MIN_MATCH-1;        if (hash_head != NIL && prev_length < max_lazy_match &&            strstart - hash_head <= MAX_DIST) {            /* To simplify the code, we prevent matches with the string             * of window index 0 (in particular we have to avoid a match             * of the string with itself at the start of the input file).             */            match_length = longest_match (hash_head);            /* longest_match() sets match_start */            if (match_length > lookahead) match_length = lookahead;            /* Ignore a length 3 match if it is too distant: */            if (match_length == MIN_MATCH && strstart-match_start > TOO_FAR){                /* If prev_match is also MIN_MATCH, match_start is garbage                 * but we will ignore the current match anyway.                 */                match_length--;            }        }        /* If there was a match at the previous step and the current         * match is not better, output the previous match:         */        if (prev_length >= MIN_MATCH && match_length <= prev_length) {            check_match(strstart-1, prev_match, prev_length);            flush = ct_tally(strstart-1-prev_match, prev_length - MIN_MATCH);            /* Insert in hash table all strings up to the end of the match.             * strstart-1 and strstart are already inserted.             */            lookahead -= prev_length-1;            prev_length -= 2;            do {                strstart++;                INSERT_STRING(strstart, hash_head);                /* strstart never exceeds WSIZE-MAX_MATCH, so there are                 * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH                 * these bytes are garbage, but it does not matter since the                 * next lookahead bytes will always be emitted as literals.                 */            } while (--prev_length != 0);            match_available = 0;            match_length = MIN_MATCH-1;            strstart++;            if (flush) FLUSH_BLOCK(0), block_start = strstart;        } else if (match_available) {            /* If there was no match at the previous position, output a             * single literal. If there was a match but the current match             * is longer, truncate the previous match to a single literal.             */            Tracevv((stderr,"%c",window[strstart-1]));            if (ct_tally (0, window[strstart-1])) {                FLUSH_BLOCK(0), block_start = strstart;            }            strstart++;            lookahead--;        } else {            /* There is no previous match to compare with, wait for             * the next step to decide.             */            match_available = 1;            strstart++;            lookahead--;        }        Assert (strstart <= isize && lookahead <= isize, "a bit too far");        /* Make sure that we always have enough lookahead, except         * at the end of the input file. We need MAX_MATCH bytes         * for the next match, plus MIN_MATCH bytes to insert the         * string following the next match.         */        while (lookahead < MIN_LOOKAHEAD && !eofile) fill_window();    }    if (match_available) ct_tally (0, window[strstart-1]);    return FLUSH_BLOCK(1); /* eof */}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色综合网色综合| 国产精品日产欧美久久久久| 久久亚洲精品国产精品紫薇| 久久精品一区二区三区不卡牛牛 | 日本成人在线看| 狠狠色丁香九九婷婷综合五月| 成人黄色一级视频| 欧美日韩成人一区| 国产亚洲婷婷免费| 亚洲韩国一区二区三区| 久久成人羞羞网站| 色综合久久综合| 日韩免费福利电影在线观看| 17c精品麻豆一区二区免费| 日韩精品成人一区二区在线| 从欧美一区二区三区| 欧美日本高清视频在线观看| 国产欧美在线观看一区| 久久综合中文字幕| 制服丝袜激情欧洲亚洲| 欧美乱妇一区二区三区不卡视频| 久久青草欧美一区二区三区| 亚洲国产综合人成综合网站| 国产成人午夜视频| 欧美精品777| 18欧美亚洲精品| 国产麻豆9l精品三级站| 欧美日韩免费一区二区三区视频| 国产精品三级视频| 美女视频黄 久久| 色狠狠av一区二区三区| 久久久高清一区二区三区| 亚洲午夜激情av| jlzzjlzz亚洲日本少妇| 精品国产一区二区三区久久久蜜月| 亚洲免费观看高清完整版在线观看熊| 国产乱码精品一区二区三| 制服丝袜国产精品| 一二三区精品视频| 成人看片黄a免费看在线| 久久综合狠狠综合久久综合88 | 欧美视频在线播放| 国产精品免费久久| 国产在线乱码一区二区三区| 色8久久人人97超碰香蕉987| 一区二区三区在线观看动漫| 国产三级久久久| 日本不卡视频在线观看| 欧美优质美女网站| 国产精品二区一区二区aⅴ污介绍| 久久国产免费看| 欧美日韩国产大片| 亚洲网友自拍偷拍| 91在线小视频| 国产精品久久久久天堂| 国产福利精品一区二区| 精品国产一区a| 久久99精品久久久久久久久久久久| 欧美视频一区在线| 亚洲一区二区三区四区中文字幕 | 亚洲另类春色国产| av色综合久久天堂av综合| 中文字幕欧美区| 国产成人在线观看| 国产亚洲欧美色| 国产成人午夜精品影院观看视频| 久久一留热品黄| 国产剧情在线观看一区二区| 久久先锋影音av| 国产成人午夜精品影院观看视频| 久久久亚洲高清| 国产传媒一区在线| 国产精品乱码一区二三区小蝌蚪| 成人综合在线网站| 亚洲另类在线一区| 99久久伊人精品| 国产清纯美女被跳蛋高潮一区二区久久w | 日韩精品五月天| 欧美日本韩国一区| 奇米影视一区二区三区小说| 欧美一级二级在线观看| 久久精品国产亚洲aⅴ| 精品国产免费一区二区三区四区 | 国产亚洲一区二区在线观看| 国产精品一区免费视频| 日本一区二区三级电影在线观看| 成人黄色777网| |精品福利一区二区三区| 色哟哟国产精品| 亚洲第一电影网| 日韩午夜av电影| 国产一区二区毛片| 中文字幕制服丝袜一区二区三区| av午夜精品一区二区三区| 亚洲黄色小视频| 欧美剧在线免费观看网站 | 欧美人伦禁忌dvd放荡欲情| 欧洲亚洲精品在线| 精品毛片乱码1区2区3区| 久久aⅴ国产欧美74aaa| 久久九九久精品国产免费直播| 国产精品一区二区久久精品爱涩 | 国产高清精品在线| 亚洲欧美国产三级| 91麻豆精品国产91久久久久| 精品一区二区影视| 国产精品理伦片| 欧美视频一区二区三区四区| 经典三级在线一区| 1024精品合集| 日韩一区二区三区在线| 粉嫩绯色av一区二区在线观看| 亚洲综合成人在线| 精品国产乱码久久久久久1区2区| 97久久久精品综合88久久| 亚洲成人一区二区在线观看| 久久久.com| 欧美日韩一级黄| 国产99精品在线观看| 亚洲国产va精品久久久不卡综合| 2017欧美狠狠色| 欧美伊人久久大香线蕉综合69| 精品夜夜嗨av一区二区三区| 一区二区三区四区不卡视频| 精品久久久久久最新网址| 色婷婷综合久久久中文字幕| 精品亚洲免费视频| 国产精品免费视频观看| 一区二区三区色| 欧美情侣在线播放| 国产久卡久卡久卡久卡视频精品| 亚洲欧美日韩在线播放| 精品国产91亚洲一区二区三区婷婷 | 亚洲自拍偷拍网站| 欧美大片在线观看一区| 色婷婷久久久久swag精品| 天堂久久久久va久久久久| 欧美国产丝袜视频| 7777精品伊人久久久大香线蕉的 | 国产iv一区二区三区| 欧美在线观看视频在线| 亚洲色图制服诱惑| 欧美日本不卡视频| 国产精品123区| 亚洲亚洲精品在线观看| 精品国产91九色蝌蚪| 一本大道久久a久久精二百| 麻豆精品视频在线观看免费| 欧美岛国在线观看| 中文字幕日韩一区二区| 国产欧美日韩三区| 久久 天天综合| 中文字幕在线一区二区三区| 欧美精品一二三区| jlzzjlzz欧美大全| 美脚の诱脚舐め脚责91 | 精品美女一区二区| 91天堂素人约啪| 久草这里只有精品视频| 亚洲视频在线一区二区| 精品日本一线二线三线不卡| 色老汉一区二区三区| 国产精品一二二区| 日韩一区欧美二区| 亚洲美女偷拍久久| 久久久久久久久久久久久女国产乱| 欧美日韩小视频| 91性感美女视频| 国产一二三精品| 欧美aaa在线| 亚洲18女电影在线观看| 1区2区3区欧美| 久久久久久免费| 欧美成人精品高清在线播放| 精品视频999| 色婷婷av一区| a在线播放不卡| 九九精品一区二区| 亚洲电影一区二区| 亚洲欧美一区二区三区国产精品| 黑人巨大精品欧美一区| 久久久不卡网国产精品二区| 91麻豆精品91久久久久同性| 在线免费一区三区| 99re热这里只有精品视频| 福利一区福利二区| 国产裸体歌舞团一区二区| 日韩国产高清影视| 午夜激情一区二区三区| 亚洲一线二线三线久久久| 亚洲视频香蕉人妖| 亚洲欧洲精品天堂一级| 久久九九久精品国产免费直播| 日韩精品一区二区在线观看| 91麻豆精品国产91久久久久久| 欧美日韩综合不卡| 色综合久久久久久久| 色94色欧美sute亚洲线路一ni | 国产精品一区不卡| 国内精品在线播放|