Home
last modified time | relevance | path

Searched refs:crc_table (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/contrib/zlib/
H A Dcrc32.c142 local z_crc_t FAR crc_table[256]; variable
280 crc_table[i] = p; in make_crc_table()
323 write_table(out, crc_table, 256); in make_crc_table()
584 return (const z_crc_t FAR *)crc_table; in get_crc_table()
714 data = (data >> 8) ^ crc_table[data & 0xff]; in crc_word()
1031 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff]; in crc32_z()
1032 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff]; in crc32_z()
1033 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff]; in crc32_z()
1034 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff]; in crc32_z()
1035 crc = (crc >> 8) ^ crc_table[(crc ^ *buf++) & 0xff]; in crc32_z()
[all …]
H A Dcrc32.h5 local const z_crc_t FAR crc_table[] = { variable
H A DChangeLog215 - Fix type mismatch between get_crc_table() and crc_table
359 - Use u4 type for crc_table to avoid conversion warnings
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/crc32/
H A Dcrc32.c37 static uint32_t const crc_table[256] = { CRC32_TABLE }; variable
47 CRC32(crc, in, in_length, 0, crc_table);
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/crc32/
H A Dcrc.c84 static uint32_t const crc_table[256] = { variable
191 c ^= (u_long) crc_table[idx];
226 c ^= (u_long) crc_table[idx];
/illumos-gate/usr/src/uts/common/io/net80211/
H A Dnet80211_crypto_wep.c85 static uint32_t crc_table[] = { CRC32_TABLE }; variable
252 -1U, crc_table); in wep_encrypt()
307 -1U, crc_table); in wep_decrypt()
H A Dnet80211_crypto_tkip.c339 static uint32_t crc_table[] = { CRC32_TABLE }; variable
514 CRC32(crc, mp->b_rptr + off, data_len, -1U, crc_table); in wep_encrypt()
546 CRC32(crc, mp->b_rptr + off, data_len, -1U, crc_table); in wep_decrypt()
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dratz.c1005 local const unsigned long FAR crc_table[TBLS][256] = variable
1069 #define DO1 crc = crc_table[0][((int)crc ^ (*buf++)) & 0xff] ^ (crc >> 8)