Searched refs:crc_table (Results 1 - 13 of 13) sorted by relevance

/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_crc32.c59 local z_crc_t FAR crc_table[TBLS][256]; variable
115 crc_table[0][n] = c;
122 c = crc_table[0][n];
123 crc_table[4][n] = ZSWAP32(c);
125 c = crc_table[0][c & 0xff] ^ (c >> 8);
126 crc_table[k][n] = c;
127 crc_table[k + 4][n] = ZSWAP32(c);
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
151 write_table(out, crc_table[0]);
156 write_table(out, crc_table[
[all...]
H A Dcrc32.h5 local const z_crc_t FAR crc_table[TBLS][256] = variable
/external/chromium_org/third_party/zlib/
H A Dcrc32.c77 local unsigned long FAR crc_table[TBLS][256]; variable
133 crc_table[0][n] = c;
140 c = crc_table[0][n];
141 crc_table[4][n] = REV(c);
143 c = crc_table[0][c & 0xff] ^ (c >> 8);
144 crc_table[k][n] = c;
145 crc_table[k + 4][n] = REV(c);
168 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
169 write_table(out, crc_table[0]);
174 write_table(out, crc_table[
[all...]
H A Dcrc32.h5 local const unsigned long FAR crc_table[TBLS][256] = variable
/external/qemu/distrib/zlib-1.2.8/
H A Dcrc32.c59 local z_crc_t FAR crc_table[TBLS][256]; variable
115 crc_table[0][n] = c;
122 c = crc_table[0][n];
123 crc_table[4][n] = ZSWAP32(c);
125 c = crc_table[0][c & 0xff] ^ (c >> 8);
126 crc_table[k][n] = c;
127 crc_table[k + 4][n] = ZSWAP32(c);
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
151 write_table(out, crc_table[0]);
156 write_table(out, crc_table[
[all...]
H A Dcrc32.h5 local const z_crc_t FAR crc_table[TBLS][256] = variable
/external/zlib/src/
H A Dcrc32.c59 local z_crc_t FAR crc_table[TBLS][256]; variable
115 crc_table[0][n] = c;
122 c = crc_table[0][n];
123 crc_table[4][n] = ZSWAP32(c);
125 c = crc_table[0][c & 0xff] ^ (c >> 8);
126 crc_table[k][n] = c;
127 crc_table[k + 4][n] = ZSWAP32(c);
150 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
151 write_table(out, crc_table[0]);
156 write_table(out, crc_table[
[all...]
H A Dcrc32.h5 local const z_crc_t FAR crc_table[TBLS][256] = variable
/external/zopfli/src/zopfli/
H A Dgzip_container.c28 static unsigned long crc_table[256]; variable
46 crc_table[n] = c;
64 c = crc_table[(c ^ buf[n]) & 0xff] ^ (c >> 8);
/external/chromium_org/third_party/smhasher/src/
H A Dcrc.cpp17 static const uint32_t crc_table[256] = { variable
74 #define DO1(buf) crc = crc_table[((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8);
/external/lzma/Asm/x86/
H A D7zCrcOpt.asm16 crc_table equ (REG_SIZE + data_size) define
18 table_VAR equ [r4 + crc_table]
/external/libpng/contrib/tools/
H A Dpngfix.c483 static png_uint_32 crc_table[256] = variable
548 return crc_table[(crc ^ b) & 0xff] ^ (crc >> 8);
561 png_uint_32 crc = crc_table[(~value >> 24)] ^ 0xffffff;
563 crc = crc_table[(crc ^ (value >> 16)) & 0xff] ^ (crc >> 8);
564 crc = crc_table[(crc ^ (value >> 8)) & 0xff] ^ (crc >> 8);
565 return crc_table[(crc ^ value) & 0xff] ^ (crc >> 8);
/external/pixman/test/
H A Dutils.c80 static const uint32_t crc_table[256] = { local
135 crc32 = (crc32 >> 8) ^ crc_table[(crc32 ^ byte_buf[i]) & 0xFF];

Completed in 4810 milliseconds