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

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

?? crc32.c

?? SDL文件。SDL_ERROwenjian.....
?? C
字號:
/* crc32.c -- compute the CRC-32 of a data stream
 * Copyright (C) 1995-2005 Mark Adler
 * For conditions of distribution and use, see copyright notice in zlib.h
 *
 * Thanks to Rodney Brown <rbrown64@csc.com.au> for his contribution of faster
 * CRC methods: exclusive-oring 32 bits of data at a time, and pre-computing
 * tables for updating the shift register in one step with three exclusive-ors
 * instead of four steps with four exclusive-ors.  This results in about a
 * factor of two increase in speed on a Power PC G4 (PPC7455) using gcc -O3.
 */

/* @(#) $Id$ */

/*
  Note on the use of DYNAMIC_CRC_TABLE: there is no mutex or semaphore
  protection on the static variables used to control the first-use generation
  of the crc tables.  Therefore, if you #define DYNAMIC_CRC_TABLE, you should
  first call get_crc_table() to initialize the tables before allowing more than
  one thread to use crc32().
 */

#ifdef MAKECRCH
#  include <stdio.h>
#  ifndef DYNAMIC_CRC_TABLE
#    define DYNAMIC_CRC_TABLE
#  endif /* !DYNAMIC_CRC_TABLE */
#endif /* MAKECRCH */

#include "zutil.h"      /* for STDC and FAR definitions */

#define local static

/* Find a four-byte integer type for crc32_little() and crc32_big(). */
#ifndef NOBYFOUR
#  ifdef STDC           /* need ANSI C limits.h to determine sizes */
#    include <limits.h>
#    define BYFOUR
#    if (UINT_MAX == 0xffffffffUL)
       typedef unsigned int u4;
#    else
#      if (ULONG_MAX == 0xffffffffUL)
         typedef unsigned long u4;
#      else
#        if (USHRT_MAX == 0xffffffffUL)
           typedef unsigned short u4;
#        else
#          undef BYFOUR     /* can't find a four-byte integer type! */
#        endif
#      endif
#    endif
#  endif /* STDC */
#endif /* !NOBYFOUR */

/* Definitions for doing the crc four data bytes at a time. */
#ifdef BYFOUR
#  define REV(w) (((w)>>24)+(((w)>>8)&0xff00)+ \
                (((w)&0xff00)<<8)+(((w)&0xff)<<24))
   local unsigned long crc32_little OF((unsigned long,
                        const unsigned char FAR *, unsigned));
   local unsigned long crc32_big OF((unsigned long,
                        const unsigned char FAR *, unsigned));
#  define TBLS 8
#else
#  define TBLS 1
#endif /* BYFOUR */

/* Local functions for crc concatenation */
local unsigned long gf2_matrix_times OF((unsigned long *mat,
                                         unsigned long vec));
local void gf2_matrix_square OF((unsigned long *square, unsigned long *mat));

#ifdef DYNAMIC_CRC_TABLE

local volatile int crc_table_empty = 1;
local unsigned long FAR crc_table[TBLS][256];
local void make_crc_table OF((void));
#ifdef MAKECRCH
   local void write_table OF((FILE *, const unsigned long FAR *));
#endif /* MAKECRCH */
/*
  Generate tables for a byte-wise 32-bit CRC calculation on the polynomial:
  x^32+x^26+x^23+x^22+x^16+x^12+x^11+x^10+x^8+x^7+x^5+x^4+x^2+x+1.

  Polynomials over GF(2) are represented in binary, one bit per coefficient,
  with the lowest powers in the most significant bit.  Then adding polynomials
  is just exclusive-or, and multiplying a polynomial by x is a right shift by
  one.  If we call the above polynomial p, and represent a byte as the
  polynomial q, also with the lowest power in the most significant bit (so the
  byte 0xb1 is the polynomial x^7+x^3+x+1), then the CRC is (q*x^32) mod p,
  where a mod b means the remainder after dividing a by b.

  This calculation is done using the shift-register method of multiplying and
  taking the remainder.  The register is initialized to zero, and for each
  incoming bit, x^32 is added mod p to the register if the bit is a one (where
  x^32 mod p is p+x^32 = x^26+...+1), and the register is multiplied mod p by
  x (which is shifting right by one and adding x^32 mod p if the bit shifted
  out is a one).  We start with the highest power (least significant bit) of
  q and repeat for all eight bits of q.

  The first table is simply the CRC of all possible eight bit values.  This is
  all the information needed to generate CRCs on data a byte at a time for all
  combinations of CRC register values and incoming bytes.  The remaining tables
  allow for word-at-a-time CRC calculation for both big-endian and little-
  endian machines, where a word is four bytes.
*/
local void make_crc_table()
{
    unsigned long c;
    int n, k;
    unsigned long poly;                 /* polynomial exclusive-or pattern */
    /* terms of polynomial defining this crc (except x^32): */
    static volatile int first = 1;      /* flag to limit concurrent making */
    static const unsigned char p[] = {0,1,2,4,5,7,8,10,11,12,16,22,23,26};

    /* See if another task is already doing this (not thread-safe, but better
       than nothing -- significantly reduces duration of vulnerability in
       case the advice about DYNAMIC_CRC_TABLE is ignored) */
    if (first) {
        first = 0;

        /* make exclusive-or pattern from polynomial (0xedb88320UL) */
        poly = 0UL;
        for (n = 0; n < sizeof(p)/sizeof(unsigned char); n++)
            poly |= 1UL << (31 - p[n]);

        /* generate a crc for every 8-bit value */
        for (n = 0; n < 256; n++) {
            c = (unsigned long)n;
            for (k = 0; k < 8; k++)
                c = c & 1 ? poly ^ (c >> 1) : c >> 1;
            crc_table[0][n] = c;
        }

#ifdef BYFOUR
        /* generate crc for each value followed by one, two, and three zeros,
           and then the byte reversal of those as well as the first table */
        for (n = 0; n < 256; n++) {
            c = crc_table[0][n];
            crc_table[4][n] = REV(c);
            for (k = 1; k < 4; k++) {
                c = crc_table[0][c & 0xff] ^ (c >> 8);
                crc_table[k][n] = c;
                crc_table[k + 4][n] = REV(c);
            }
        }
#endif /* BYFOUR */

        crc_table_empty = 0;
    }
    else {      /* not first */
        /* wait for the other guy to finish (not efficient, but rare) */
        while (crc_table_empty)
            ;
    }

#ifdef MAKECRCH
    /* write out CRC tables to crc32.h */
    {
        FILE *out;

        out = fopen("crc32.h", "w");
        if (out == NULL) return;
        fprintf(out, "/* crc32.h -- tables for rapid CRC calculation\n");
        fprintf(out, " * Generated automatically by crc32.c\n */\n\n");
        fprintf(out, "local const unsigned long FAR ");
        fprintf(out, "crc_table[TBLS][256] =\n{\n  {\n");
        write_table(out, crc_table[0]);
#  ifdef BYFOUR
        fprintf(out, "#ifdef BYFOUR\n");
        for (k = 1; k < 8; k++) {
            fprintf(out, "  },\n  {\n");
            write_table(out, crc_table[k]);
        }
        fprintf(out, "#endif\n");
#  endif /* BYFOUR */
        fprintf(out, "  }\n};\n");
        fclose(out);
    }
#endif /* MAKECRCH */
}

#ifdef MAKECRCH
local void write_table(out, table)
    FILE *out;
    const unsigned long FAR *table;
{
    int n;

    for (n = 0; n < 256; n++)
        fprintf(out, "%s0x%08lxUL%s", n % 5 ? "" : "    ", table[n],
                n == 255 ? "\n" : (n % 5 == 4 ? ",\n" : ", "));
}
#endif /* MAKECRCH */

#else /* !DYNAMIC_CRC_TABLE */
/* ========================================================================
 * Tables of CRC-32s of all single-byte values, made by make_crc_table().
 */
#include "crc32.h"
#endif /* DYNAMIC_CRC_TABLE */

/* =========================================================================
 * This function can be used by asm versions of crc32()
 */
const unsigned long FAR * ZEXPORT get_crc_table()
{
#ifdef DYNAMIC_CRC_TABLE
    if (crc_table_empty)
        make_crc_table();
#endif /* DYNAMIC_CRC_TABLE */
    return (const unsigned long FAR *)crc_table;
}

/* ========================================================================= */
#define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)
#define DO8 DO1; DO1; DO1; DO1; DO1; DO1; DO1; DO1

/* ========================================================================= */
unsigned long ZEXPORT crc32(crc, buf, len)
    unsigned long crc;
    const unsigned char FAR *buf;
    unsigned len;
{
    if (buf == Z_NULL) return 0UL;

#ifdef DYNAMIC_CRC_TABLE
    if (crc_table_empty)
        make_crc_table();
#endif /* DYNAMIC_CRC_TABLE */

#ifdef BYFOUR
    if (sizeof(void *) == sizeof(ptrdiff_t)) {
        u4 endian;

        endian = 1;
        if (*((unsigned char *)(&endian)))
            return crc32_little(crc, buf, len);
        else
            return crc32_big(crc, buf, len);
    }
#endif /* BYFOUR */
    crc = crc ^ 0xffffffffUL;
    while (len >= 8) {
        DO8;
        len -= 8;
    }
    if (len) do {
        DO1;
    } while (--len);
    return crc ^ 0xffffffffUL;
}

#ifdef BYFOUR

/* ========================================================================= */
#define DOLIT4 c ^= *buf4++; \
        c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
            crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
#define DOLIT32 DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4; DOLIT4

/* ========================================================================= */
local unsigned long crc32_little(crc, buf, len)
    unsigned long crc;
    const unsigned char FAR *buf;
    unsigned len;
{
    register u4 c;
    register const u4 FAR *buf4;

    c = (u4)crc;
    c = ~c;
    while (len && ((ptrdiff_t)buf & 3)) {
        c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
        len--;
    }

    buf4 = (const u4 FAR *)(const void FAR *)buf;
    while (len >= 32) {
        DOLIT32;
        len -= 32;
    }
    while (len >= 4) {
        DOLIT4;
        len -= 4;
    }
    buf = (const unsigned char FAR *)buf4;

    if (len) do {
        c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
    } while (--len);
    c = ~c;
    return (unsigned long)c;
}

/* ========================================================================= */
#define DOBIG4 c ^= *++buf4; \
        c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
            crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24]
#define DOBIG32 DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4; DOBIG4

/* ========================================================================= */
local unsigned long crc32_big(crc, buf, len)
    unsigned long crc;
    const unsigned char FAR *buf;
    unsigned len;
{
    register u4 c;
    register const u4 FAR *buf4;

    c = REV((u4)crc);
    c = ~c;
    while (len && ((ptrdiff_t)buf & 3)) {
        c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);
        len--;
    }

    buf4 = (const u4 FAR *)(const void FAR *)buf;
    buf4--;
    while (len >= 32) {
        DOBIG32;
        len -= 32;
    }
    while (len >= 4) {
        DOBIG4;
        len -= 4;
    }
    buf4++;
    buf = (const unsigned char FAR *)buf4;

    if (len) do {
        c = crc_table[4][(c >> 24) ^ *buf++] ^ (c << 8);
    } while (--len);
    c = ~c;
    return (unsigned long)(REV(c));
}

#endif /* BYFOUR */

#define GF2_DIM 32      /* dimension of GF(2) vectors (length of CRC) */

/* ========================================================================= */
local unsigned long gf2_matrix_times(mat, vec)
    unsigned long *mat;
    unsigned long vec;
{
    unsigned long sum;

    sum = 0;
    while (vec) {
        if (vec & 1)
            sum ^= *mat;
        vec >>= 1;
        mat++;
    }
    return sum;
}

/* ========================================================================= */
local void gf2_matrix_square(square, mat)
    unsigned long *square;
    unsigned long *mat;
{
    int n;

    for (n = 0; n < GF2_DIM; n++)
        square[n] = gf2_matrix_times(mat, mat[n]);
}

/* ========================================================================= */
uLong ZEXPORT crc32_combine(crc1, crc2, len2)
    uLong crc1;
    uLong crc2;
    z_off_t len2;
{
    int n;
    unsigned long row;
    unsigned long even[GF2_DIM];    /* even-power-of-two zeros operator */
    unsigned long odd[GF2_DIM];     /* odd-power-of-two zeros operator */

    /* degenerate case */
    if (len2 == 0)
        return crc1;

    /* put operator for one zero bit in odd */
    odd[0] = 0xedb88320L;           /* CRC-32 polynomial */
    row = 1;
    for (n = 1; n < GF2_DIM; n++) {
        odd[n] = row;
        row <<= 1;
    }

    /* put operator for two zero bits in even */
    gf2_matrix_square(even, odd);

    /* put operator for four zero bits in odd */
    gf2_matrix_square(odd, even);

    /* apply len2 zeros to crc1 (first square will put the operator for one
       zero byte, eight zero bits, in even) */
    do {
        /* apply zeros operator for this bit of len2 */
        gf2_matrix_square(even, odd);
        if (len2 & 1)
            crc1 = gf2_matrix_times(even, crc1);
        len2 >>= 1;

        /* if no more bits set, then done */
        if (len2 == 0)
            break;

        /* another iteration of the loop with odd and even swapped */
        gf2_matrix_square(odd, even);
        if (len2 & 1)
            crc1 = gf2_matrix_times(odd, crc1);
        len2 >>= 1;

        /* if no more bits set, then done */
    } while (len2 != 0);

    /* return combined crc */
    crc1 ^= crc2;
    return crc1;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩免费观看高清完整版| 成人激情黄色小说| 一区二区在线观看视频| 中文字幕一区二区三区乱码在线 | 日韩福利电影在线观看| 一区二区高清在线| 亚洲国产精品一区二区久久 | 国产精品综合一区二区三区| 久久成人免费网| 国产精品中文有码| gogogo免费视频观看亚洲一| www.亚洲国产| 欧美亚洲国产一区在线观看网站 | 91精品一区二区三区久久久久久| 欧美日韩在线一区二区| 4438成人网| 久久综合给合久久狠狠狠97色69| 久久久久国产精品麻豆| 中日韩免费视频中文字幕| 综合在线观看色| 亚洲v精品v日韩v欧美v专区| 加勒比av一区二区| 成人精品一区二区三区四区| 欧美在线你懂得| 日韩欧美一级二级三级| 中文字幕欧美三区| 性感美女久久精品| 国产精品综合一区二区三区| 色综合欧美在线| 精品欧美乱码久久久久久| 亚洲国产精品av| 天天做天天摸天天爽国产一区 | 国产一区二区在线视频| 成人av在线资源网站| 在线免费不卡电影| 国产丝袜欧美中文另类| 丝袜美腿成人在线| 成人爽a毛片一区二区免费| 欧美午夜一区二区三区| 久久精品亚洲一区二区三区浴池 | www.欧美亚洲| 日韩欧美国产高清| 亚洲另类春色校园小说| 国产主播一区二区| 欧美日韩国产大片| 亚洲欧洲性图库| 国产一区二区三区免费在线观看| 欧美日韩在线三区| 亚洲欧美电影院| 国产成人精品免费| 欧美大片日本大片免费观看| 亚洲久草在线视频| 国产激情视频一区二区三区欧美| 欧美日韩卡一卡二| 亚洲毛片av在线| 99久久精品久久久久久清纯| 精品久久久久久综合日本欧美| 亚洲国产精品久久久久婷婷884| 成人国产精品免费观看动漫| 日韩视频一区二区三区 | 国产视频一区二区在线观看| 亚洲电影欧美电影有声小说| av成人动漫在线观看| 中文字幕欧美国产| 国产suv精品一区二区6| www国产成人| 久久精品国产免费| 欧美一级理论片| 日韩1区2区3区| 在线成人av网站| 天天做天天摸天天爽国产一区| 日本丰满少妇一区二区三区| 亚洲欧洲中文日韩久久av乱码| 99视频有精品| 亚洲日本护士毛茸茸| 一本大道综合伊人精品热热| 亚洲美女视频一区| 欧洲激情一区二区| 图片区小说区国产精品视频| 欧美酷刑日本凌虐凌虐| 日本成人在线电影网| 欧美va亚洲va在线观看蝴蝶网| 国产在线视频精品一区| 国产欧美日本一区视频| voyeur盗摄精品| 亚洲视频一区二区免费在线观看| 色综合天天综合网天天看片| 亚洲与欧洲av电影| 欧美电影免费观看高清完整版在 | 欧美高清dvd| 青青草成人在线观看| 久久影视一区二区| www.亚洲精品| 性做久久久久久免费观看欧美| 91精品久久久久久久久99蜜臂| 美国十次了思思久久精品导航| 2023国产精品自拍| 91年精品国产| 奇米影视在线99精品| 中文字幕久久午夜不卡| 欧美图片一区二区三区| 蜜桃久久久久久| 国产精品国产三级国产有无不卡| 91久久精品网| 国产美女精品一区二区三区| 中文字幕一区二区在线播放 | 成人永久免费视频| 亚洲一卡二卡三卡四卡| 欧美va日韩va| 在线亚洲+欧美+日本专区| 欧美aⅴ一区二区三区视频| 国产视频一区在线观看| 欧美日韩一区二区在线观看| 国产经典欧美精品| 日本午夜一区二区| 综合久久久久综合| 久久亚洲欧美国产精品乐播| 91在线观看成人| 国内精品嫩模私拍在线| 亚洲久草在线视频| 日本一区二区三级电影在线观看| 欧美精品v日韩精品v韩国精品v| 国产大陆精品国产| 美女脱光内衣内裤视频久久影院| 亚洲天堂中文字幕| 欧美激情一区二区三区在线| 欧美日韩1234| 91免费版pro下载短视频| 国产精品一线二线三线| 青椒成人免费视频| 亚洲第一综合色| 玉足女爽爽91| 亚洲欧美一区二区三区孕妇| 亚洲国产精品传媒在线观看| 久久综合网色—综合色88| 欧美日韩国产综合草草| 一本到高清视频免费精品| 粗大黑人巨茎大战欧美成人| 国内精品伊人久久久久av影院| 日本不卡的三区四区五区| 一区二区三区色| 亚洲精品成人精品456| 日韩美女视频19| 中文字幕日韩精品一区 | 欧美日韩黄色一区二区| 9i在线看片成人免费| 国产成a人亚洲| 国产精品一区二区在线播放| 精品一二三四在线| 久久国产尿小便嘘嘘尿| 日韩不卡免费视频| 日韩成人av影视| 麻豆精品视频在线观看视频| 日韩高清在线不卡| 蜜桃一区二区三区在线观看| 裸体在线国模精品偷拍| 久久国产精品一区二区| 韩国毛片一区二区三区| 国产成人综合精品三级| www.久久精品| 欧美亚洲一区二区三区四区| 在线不卡中文字幕| 精品国产亚洲在线| 国产精品天美传媒| 自拍偷拍国产精品| 三级影片在线观看欧美日韩一区二区| 亚洲成人动漫av| 精品一二三四在线| 成人免费视频caoporn| 色视频一区二区| 欧美精品色一区二区三区| 欧美一级一级性生活免费录像| 日韩精品一区在线| 国产精品国产精品国产专区不片| 亚洲精品中文在线| 美女看a上一区| 不卡电影免费在线播放一区| 欧美影院午夜播放| 精品成人一区二区三区四区| 亚洲国产成人午夜在线一区| 亚洲影视在线播放| 国产精品99久久久久久久女警 | 日韩一级在线观看| 国产日产精品1区| 一区二区三区国产精品| 久久爱另类一区二区小说| 北岛玲一区二区三区四区| 91精品久久久久久久久99蜜臂| 久久精品亚洲精品国产欧美kt∨| 亚洲欧美韩国综合色| 久久国产精品99久久人人澡| 91色在线porny| 欧美电影免费观看高清完整版| 自拍偷拍亚洲欧美日韩| 久久 天天综合| 欧美日本视频在线| 亚洲视频在线观看三级| 国产伦精品一区二区三区免费 | 欧美精品一区二区三区高清aⅴ | 日韩欧美亚洲国产另类|