HomeSort by relevance Sort by last modified time
    Searched refs:crc_table (Results 1 - 24 of 24) sorted by null

  /device/google/contexthub/util/stm32_flash/
stm32f4_crc.c 21 static unsigned int crc_table[] = variable
33 crc = (crc << 4) ^ crc_table[crc >> 28];
34 crc = (crc << 4) ^ crc_table[crc >> 28];
35 crc = (crc << 4) ^ crc_table[crc >> 28];
36 crc = (crc << 4) ^ crc_table[crc >> 28];
37 crc = (crc << 4) ^ crc_table[crc >> 28];
38 crc = (crc << 4) ^ crc_table[crc >> 28];
39 crc = (crc << 4) ^ crc_table[crc >> 28];
40 crc = (crc << 4) ^ crc_table[crc >> 28];
  /external/u-boot/tools/
pbl_crc32.c 9 static uint32_t crc_table[256]; variable
35 crc_table[i] = mask;
52 crc_table[(crc32_val >> 24) ^ (*buf++ & 0xff)];
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
crc32.c 75 local unsigned long FAR crc_table[TBLS][256]; variable
131 crc_table[0][n] = c;
138 c = crc_table[0][n];
139 crc_table[4][n] = REV(c);
141 c = crc_table[0][c & 0xff] ^ (c >> 8);
142 crc_table[k][n] = c;
143 crc_table[k + 4][n] = REV(c);
166 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
167 write_table(out, crc_table[0]);
172 write_table(out, crc_table[k]);
    [all...]
crc32.h 5 local const unsigned long FAR crc_table[TBLS][256] = variable
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
crc32.c 59 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[k]);
    [all...]
crc32.h 5 local const z_crc_t FAR crc_table[TBLS][256] = variable
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
crc32.c 57 local z_crc_t FAR crc_table[TBLS][256]; variable
113 crc_table[0][n] = c;
120 c = crc_table[0][n];
121 crc_table[4][n] = ZSWAP32(c);
123 c = crc_table[0][c & 0xff] ^ (c >> 8);
124 crc_table[k][n] = c;
125 crc_table[k + 4][n] = ZSWAP32(c);
148 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
149 write_table(out, crc_table[0]);
154 write_table(out, crc_table[k])
    [all...]
crc32.h 5 local const z_crc_t FAR crc_table[TBLS][256] = variable
  /external/python/cpython2/Modules/zlib/
crc32.c 57 local z_crc_t FAR crc_table[TBLS][256]; variable
113 crc_table[0][n] = c;
120 c = crc_table[0][n];
121 crc_table[4][n] = ZSWAP32(c);
123 c = crc_table[0][c & 0xff] ^ (c >> 8);
124 crc_table[k][n] = c;
125 crc_table[k + 4][n] = ZSWAP32(c);
148 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
149 write_table(out, crc_table[0]);
154 write_table(out, crc_table[k])
    [all...]
crc32.h 5 local const z_crc_t FAR crc_table[TBLS][256] = variable
  /external/zlib/src/
crc32.c 57 local z_crc_t FAR crc_table[TBLS][256]; variable
113 crc_table[0][n] = c;
120 c = crc_table[0][n];
121 crc_table[4][n] = ZSWAP32(c);
123 c = crc_table[0][c & 0xff] ^ (c >> 8);
124 crc_table[k][n] = c;
125 crc_table[k + 4][n] = ZSWAP32(c);
148 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n");
149 write_table(out, crc_table[0]);
154 write_table(out, crc_table[k])
    [all...]
crc32.h 5 local const z_crc_t FAR crc_table[TBLS][256] = variable
  /external/toybox/toys/posix/
cksum.c 39 unsigned crc_table[256];
44 return (crc<<8)^TT.crc_table[(crc>>24)^c];
49 return TT.crc_table[(crc^c)&0xff] ^ (crc>>8);
90 crc_init(TT.crc_table, toys.optflags & FLAG_L);
  /external/zopfli/src/zopfli/
gzip_container.c 28 static unsigned long crc_table[256]; variable
46 crc_table[n] = c;
64 c = crc_table[(c ^ buf[n]) & 0xff] ^ (c >> 8);
  /bootable/recovery/boot_control/
boot_control.cpp 65 static uint32_t crc_table[256];
68 if (!crc_table[1]) {
75 crc_table[i] = crc;
81 ret = (ret >> 8) ^ crc_table[(ret ^ buf[i]) & 0xFF]; member in namespace:__anon1578
  /external/lzma/Asm/x86/
7zCrcOpt.asm 16 crc_table equ (REG_SIZE + data_size) define
18 table_VAR equ [r4 + crc_table]
XzCrc64Opt.asm 104 crc_table equ (8 + crc_val) define
105 table_VAR equ [r4 + crc_table]
  /external/u-boot/lib/
crc32.c 32 local uint32_t crc_table[256]; variable
77 crc_table[n] = tole(c);
86 local const uint32_t crc_table[256] = { variable
163 return (const uint32_t *)crc_table;
181 const uint32_t *tab = crc_table;
  /external/toybox/lib/
deflate.c 417 unsigned crc, *crc_table = dd->crctable; local
420 for (i=0; i<len; i++) crc = crc_table[(crc^data[i])&0xff] ^ (crc>>8);
lib.h 245 void crc_init(unsigned int *crc_table, int little_endian);
lib.c 789 void crc_init(unsigned int *crc_table, int little_endian)
799 crc_table[i] = c;
    [all...]
  /external/u-boot/drivers/fpga/
ivm_core.c 2042 unsigned int crc_table[16] = { local
    [all...]
  /external/libpng/contrib/tools/
pngfix.c 488 static png_uint_32 crc_table[256] = variable
553 return crc_table[(crc ^ b) & 0xff] ^ (crc >> 8);
566 png_uint_32 crc = crc_table[(~value >> 24)] ^ 0xffffff;
568 crc = crc_table[(crc ^ (value >> 16)) & 0xff] ^ (crc >> 8);
569 crc = crc_table[(crc ^ (value >> 8)) & 0xff] ^ (crc >> 8);
570 return crc_table[(crc ^ value) & 0xff] ^ (crc >> 8);
    [all...]
  /external/toybox/generated/
globals.h 965 unsigned crc_table[256]; member in struct:cksum_data

Completed in 662 milliseconds