Searched refs:crc32_table (Results 1 – 5 of 5) sorted by relevance
20 static uint32_t crc32_table[8][256]; variable30 uint32_t r = s == 0 ? b : crc32_table[s - 1][b]; in init_crc32_table()39 crc32_table[s][b] = r; in init_crc32_table()46 crc32_table[s][b] = byteswap32(crc32_table[s][b]); in init_crc32_table()67 printf("0x%08" PRIX32, crc32_table[s][b]); in print_crc32_table()96 printf("0x%08" PRIX32, crc32_table[0][b]); in print_lz_table()
19 static const u32 crc32_table[256] = { variable82 crc = crc32_table[(crc ^ frame[i]) & 0xff] ^ (crc >> 8); in ieee80211_crc32()
289 static const uint32_t crc32_table[256] = { variable388 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt()475 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
462 static const __u32 crc32_table[256] = { variable697 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_encrypt()758 crc = crc32_table[(crc ^ *pos) & 0xff] ^ (crc >> 8); in wep_decrypt()
5326 because crc32_table.c included the lzma_crc32_table[][] in the build5334 src/liblzma/check/crc32_table.c | 42 ---------------------------------------6122 src/liblzma/check/crc32_table.c | 10 +++++-----8436 src/liblzma/check/crc32_table.c | 10 ++++------8452 src/liblzma/check/crc32_table.c | 2 +-10719 src/liblzma/check/crc32_table.c | 2 ++11030 src/liblzma/check/crc32_table.c | 3 -11479 src/liblzma/check/crc32_table.c | 4 ++--11527 src/liblzma/check/crc32_table.c | 18 +++++++++++++++---13541 src/liblzma/check/crc32_table.c | 19 +++-