Searched refs:CRC_32_TAB (Results 1 - 6 of 6) sorted by relevance

/haiku/src/bin/unzip/
H A Dglobals.h375 # define CRC_32_TAB crc_32_tab macro
377 # define CRC_32_TAB G.crc_32_tab macro
H A Dcrypt.h127 #ifndef CRC_32_TAB /* UnZip provides this in globals.h */
133 #endif /* !CRC_32_TAB */
H A Dcrypt.c110 #ifndef CRC_32_TAB
111 # define CRC_32_TAB crc_32_tab macro
114 #define CRC32(c, b) (CRC_32_TAB[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
H A Dcryptf.c113 #ifndef CRC_32_TAB
114 # define CRC_32_TAB crc_32_tab macro
117 #define CRC32(c, b) (CRC_32_TAB[((int)(c) ^ (b)) & 0xff] ^ ((c) >> 8))
H A Dprocess.c197 #if 0 /* CRC_32_TAB has been NULLified by CONSTRUCTGLOBALS !!!! */
199 CRC_32_TAB = NULL;
481 if (CRC_32_TAB) {
483 CRC_32_TAB = NULL;
611 if (CRC_32_TAB == NULL) {
612 if ((CRC_32_TAB = get_crc_table()) == NULL) {
H A Dfunzip.c456 CRC_32_TAB = (ZCONST ulg Far *)get_crc_table();

Completed in 56 milliseconds