HomeSort by: relevance | last modified time | path
    Searched refs:crc_table (Results 1 - 7 of 7) sorted by relevancy

  /src/sys/lib/libkern/
crc32.c 37 c = crc_table[3][c & 0xff] ^ crc_table[2][(c >> 8) & 0xff] ^ \
38 crc_table[1][(c >> 16) & 0xff] ^ crc_table[0][c >> 24]
52 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
68 c = crc_table[0][(c ^ *buf++) & 0xff] ^ (c >> 8);
78 c = crc_table[4][c & 0xff] ^ crc_table[5][(c >> 8) & 0xff] ^ \
79 crc_table[6][(c >> 16) & 0xff] ^ crc_table[7][c >> 24
    [all...]
crc32.h 7 static const uint32_t crc_table[8][256] = variable in typeref:typename:const uint32_t[8][256]
  /src/common/dist/zlib/
crc32.c 196 local z_crc_t FAR crc_table[256]; variable in typeref:typename:local z_crc_t FAR[256]
321 crc_table[i] = p;
362 "local const z_crc_t FAR crc_table[] = {\n"
364 write_table(out, crc_table, 256);
555 return (const z_crc_t FAR *)crc_table;
681 data = (data >> 8) ^ crc_table[data & 0xff];
720 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff];
996 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff];
997 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff];
998 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff]
    [all...]
crc32.h 5 local const z_crc_t FAR crc_table[] = { variable in typeref:typename:local const z_crc_t FAR[]
  /src/sys/fs/udf/
udf_osta.c 149 static unsigned short crc_table[256] = { variable in typeref:typename:unsigned short[256]
190 crc = crc_table[(crc>>8 ^ *s++) & 0xff] ^ (crc<<8);
204 crc = crc_table[(crc>>8 ^ (*s>>8)) & 0xff] ^ (crc<<8);
205 crc = crc_table[(crc>>8 ^ (*s++ & 0xff)) & 0xff] ^ (crc<<8);
  /src/sys/dev/iscsi/
iscsi_utils.c 64 STATIC uint32_t crc_table[256] = { variable in typeref:typename:STATIC uint32_t[256]
150 crc = ((crc >> 8) & 0x00ffffff) ^ crc_table[(crc ^ *bp++) & 0xff];
175 crc = ((crc >> 8) & 0x00ffffff) ^ crc_table[(crc ^ *bp++) & 0xff];
179 crc = ((crc >> 8) & 0x00ffffff) ^ crc_table[(crc ^ *bp++) & 0xff];
  /src/sys/dev/dtv/
dtv_demux.c 90 static uint32_t crc_table[256] = { variable in typeref:typename:uint32_t[256]
161 const uint32_t *crc_tab = crc_table;

Completed in 26 milliseconds