/illumos-gate/usr/src/common/hdcrc/ |
H A D | hd_crc.h | 174 hd_crc32_avail(uint32_t *crc32_table) argument 176 hd_crc32_avail(uint32_t *crc32_table) 264 if (crc32_table[i] != _intel_crc32_hd_table[i])
|
/illumos-gate/usr/src/uts/common/inet/ilb/ |
H A D | ilb_alg_hash.c | 40 CRC32((hash), &(addr), sizeof (in_addr_t), -1U, crc32_table); \ 49 CRC32((hash), &val, sizeof (uint32_t), -1U, crc32_table); \ 58 CRC32((hash), &val, sizeof (uint32_t), -1U, crc32_table); \
|
H A D | ilb_nat.c | 51 CRC32((hash), (key1), sizeof (uint32_t), -1U, crc32_table); \ 52 CRC32((hash), (key2), sizeof (uint32_t), (hash), crc32_table); \
|
/illumos-gate/usr/src/uts/common/net/ |
H A D | ppp_defs.h | 137 #define PPPFCS32(fcs, c) (((fcs) >> 8) ^ crc32_table[((fcs) ^ (c)) & 0xff])
|
/illumos-gate/usr/src/uts/common/sys/ |
H A D | crc32.h | 90 * crc = (crc >> 8) ^ crc32_table[(crc ^ byte) & 0xFF]; 94 * We also define a pre-computed crc32_table[] for the polynomial 0xEDB88320. 117 * Typical usage: CRC32(crc, buf, size, -1U, crc32_table). 132 * Typical usage: CRC32_STRING(crc, len, str, -1U, crc32_table). 224 extern const uint32_t crc32_table[256];
|
/illumos-gate/usr/src/uts/sun4v/io/ |
H A D | vdsk_common.c | 89 CRC32(crc32val, s, len, -1U, crc32_table);
|
H A D | vds.c | 5869 CRC32(crc, gpe, sizeof (efi_gpe_t) * VD_MAXPART, -1U, crc32_table); 5872 CRC32(crc, gpt, sizeof (efi_gpt_t), -1U, crc32_table);
|
/illumos-gate/usr/src/uts/common/os/ |
H A D | space.c | 370 const uint32_t crc32_table[256] = { CRC32_TABLE }; variable
|
/illumos-gate/usr/src/uts/common/io/fcoe/ |
H A D | fcoe_fc.c | 392 (uint32_t)~0, crc32_table);
|
H A D | fcoe.c | 1144 CRC32(crc, frm->frm_fc_frame, frm->frm_fc_frame_size, -1U, crc32_table);
|
/illumos-gate/usr/src/lib/libldap5/sources/ldap/common/ |
H A D | memcache.c | 2139 static unsigned long crc32_table[256] = { 2200 crc = ((crc << 8) ^ crc32_table[(crc >> 24) ^ *p]) & 0xffffffff;
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | zvol.c | 1525 CRC32(crc, &gpe, sizeof (gpe), -1U, crc32_table); 1527 CRC32(crc, &gpt, sizeof (gpt), -1U, crc32_table);
|
/illumos-gate/usr/src/uts/common/io/efe/ |
H A D | efe.c | 751 CRC32(val, macaddr, ETHERADDRL, -1U, crc32_table);
|
/illumos-gate/usr/src/uts/common/io/afe/ |
H A D | afe.c | 762 CRC32(crc, macaddr, ETHERADDRL, -1U, crc32_table);
|
/illumos-gate/usr/src/uts/common/io/pcn/ |
H A D | pcn.c | 598 CRC32(crc, macaddr, ETHERADDRL, -1U, crc32_table);
|
/illumos-gate/usr/src/uts/common/io/ |
H A D | devinfo.c | 3992 CRC32(crc, di_cache.cache_data, map_size, -1U, crc32_table); 4222 CRC32(crc, di_cache.cache_data, all->map_size, -1U, crc32_table);
|
H A D | cryptmod.c | 653 CRC32(crc, input, len, 0, crc32_table);
|
/illumos-gate/usr/src/uts/common/io/hme/ |
H A D | hme.c | 418 CRC32(crc, addr, ETHERADDRL, -1U, crc32_table);
|
/illumos-gate/usr/src/uts/sun/io/eri/ |
H A D | eri.c | 1098 CRC32(crc, addr, ETHERADDRL, -1U, crc32_table);
|
/illumos-gate/usr/src/uts/common/io/bge/ |
H A D | bge_main2.c | 1316 CRC32(hash, mca, ETHERADDRL, -1U, crc32_table);
|
/illumos-gate/usr/src/uts/common/io/sfe/ |
H A D | sfe_util.c | 165 CRC32(crc, addr, ETHERADDRL, 0xffffffffU, crc32_table);
|