Searched refs:crc_table (Results 1 - 3 of 3) sorted by relevance

/haiku/src/bin/unzip/
H A Dcrc32.c30 #define CRC32(c, b) (crc_table[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
45 register ZCONST ulg near *crc_table; local
49 crc_table = get_crc_table();
H A Dcrctab.c65 local ulg near *crc_table = NULL;
76 # define CRC_TABLE_IS_EMPTY (crc_table == NULL)
77 # define MARK_CRCTAB_FILLED crc_table = crctab_p
78 # define MARK_CRCTAB_EMPTY crc_table = NULL
81 local ulg near crc_table[256];
94 ulg near *crctab_p; /* temporary pointer to allocated crc_table area */
96 # define crctab_p crc_table
101 * used in the creation of the crc_table values can be recomputed.
120 ziperr(ZE_MEM, "crc_table allocation");
142 local ZCONST ulg near crc_table[25
[all...]
/haiku/src/apps/mail/
H A DWIndex.cpp474 static unsigned long crc_table[256]; variable
493 crc_table[i] = crc_accum;
509 crc_accum = (crc_accum << 8) ^ crc_table[i];

Completed in 162 milliseconds