Searched refs:crc_table (Results 1 - 8 of 8) sorted by relevance
/illumos-gate/usr/src/uts/common/gssapi/mechs/krb5/crypto/crc32/ |
H A D | crc32.c | 39 static uint32_t const crc_table[256] = { CRC32_TABLE }; variable 49 CRC32(crc, in, in_length, 0, crc_table);
|
/illumos-gate/usr/src/uts/common/zmod/ |
H A D | crc32.c | 80 local unsigned long FAR crc_table[TBLS][256]; variable 136 crc_table[0][n] = c; 143 c = crc_table[0][n]; 144 crc_table[4][n] = REV(c); 146 c = crc_table[0][c & 0xff] ^ (c >> 8); 147 crc_table[k][n] = c; 148 crc_table[k + 4][n] = REV(c); 171 fprintf(out, "crc_table[TBLS][256] =\n{\n {\n"); 172 write_table(out, crc_table[0]); 177 write_table(out, crc_table[ [all...] |
H A D | crc32.h | 7 local const unsigned long FAR crc_table[TBLS][256] = variable
|
/illumos-gate/usr/src/boot/lib/libz/ |
H A D | 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[ [all...] |
H A D | crc32.h | 5 local const z_crc_t FAR crc_table[TBLS][256] = variable
|
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/crypto/crc32/ |
H A D | crc.c | 86 static uint32_t const crc_table[256] = { variable 193 c ^= (u_long) crc_table[idx]; 228 c ^= (u_long) crc_table[idx];
|
/illumos-gate/usr/src/uts/common/io/net80211/ |
H A D | net80211_crypto_wep.c | 85 static uint32_t crc_table[] = { CRC32_TABLE }; variable 252 -1U, crc_table); 307 -1U, crc_table);
|
H A D | net80211_crypto_tkip.c | 339 static uint32_t crc_table[] = { CRC32_TABLE }; variable 514 CRC32(crc, mp->b_rptr + off, data_len, -1U, crc_table); 546 CRC32(crc, mp->b_rptr + off, data_len, -1U, crc_table);
|
Completed in 51 milliseconds