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

/freebsd-13-stable/sys/contrib/zlib/
H A Dcrc32.c57 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[
[all...]
H A Dcrc32.h5 local const z_crc_t FAR crc_table[TBLS][256] = variable
/freebsd-13-stable/sys/fs/udf/
H A Dosta.c178 static unsigned short crc_table[256] = { variable
221 crc = crc_table[(crc>>8 ^ *s++) & 0xff] ^ (crc<<8);
237 crc = crc_table[(crc>>8 ^ (*s>>8)) & 0xff] ^ (crc<<8);
238 crc = crc_table[(crc>>8 ^ (*s++ & 0xff)) & 0xff] ^ (crc<<8);
/freebsd-13-stable/sys/contrib/ncsw/inc/Peripherals/
H A Dcrc_mac_addr_ext.h49 static uint32_t crc_table[256] = variable
321 crc = crc_table[crc&0xff] ^ (crc>>8); \
/freebsd-13-stable/contrib/ofed/opensm/opensm/
H A Dosm_trap_rcv.c155 static uint32_t crc_table[256]; local
169 crc_table[i] = crc;
178 temp2 = crc_table[((int)crc ^ *p++) & 0xFF];

Completed in 118 milliseconds