Home
last modified time | relevance | path

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

/busybox-1.35.0/archival/libarchive/bz/
Dbzlib_private.h83 #define BZ_INITIALISE_CRC(crcVar) \ argument
85 crcVar = 0xffffffffL; \
88 #define BZ_FINALISE_CRC(crcVar) \ argument
90 crcVar = ~(crcVar); \
93 #define BZ_UPDATE_CRC(s, crcVar, cha) \ argument
95 crcVar = (crcVar << 8) ^ s->crc32table[(crcVar >> 24) ^ ((uint8_t)cha)]; \