Home
last modified time | relevance | path

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

/external/bzip2/
Dbzlib_private.h157 #define BZ_INITIALISE_CRC(crcVar) \ argument
159 crcVar = 0xffffffffL; \
162 #define BZ_FINALISE_CRC(crcVar) \ argument
164 crcVar = ~(crcVar); \
167 #define BZ_UPDATE_CRC(crcVar,cha) \ argument
169 crcVar = (crcVar << 8) ^ \
170 BZ2_crc32Table[(crcVar >> 24) ^ \
/external/valgrind/none/tests/x86/
Dx86locked.c103 #define UPDATE_CRC(crcVar,cha) \ argument
105 crcVar = (crcVar << 8) ^ \
106 crc32Table[(crcVar >> 24) ^ \
/external/valgrind/none/tests/amd64/
Damd64locked.c103 #define UPDATE_CRC(crcVar,cha) \ argument
105 crcVar = (crcVar << 8) ^ \
106 crc32Table[(crcVar >> 24) ^ \
/external/valgrind/memcheck/tests/
Dvarinfo6.c577 #define BZ_INITIALISE_CRC(crcVar) \ argument
579 crcVar = 0xffffffffL; \
582 #define BZ_FINALISE_CRC(crcVar) \ argument
584 crcVar = ~(crcVar); \
587 #define BZ_UPDATE_CRC(crcVar,cha) \ argument
589 crcVar = (crcVar << 8) ^ \
590 BZ2_crc32Table[(crcVar >> 24) ^ \
Dorigin5-bz2.c539 #define BZ_INITIALISE_CRC(crcVar) \ argument
541 crcVar = 0xffffffffL; \
544 #define BZ_FINALISE_CRC(crcVar) \ argument
546 crcVar = ~(crcVar); \
549 #define BZ_UPDATE_CRC(crcVar,cha) \ argument
551 crcVar = (crcVar << 8) ^ \
552 BZ2_crc32Table[(crcVar >> 24) ^ \
/external/valgrind/perf/
Dbz2.c539 #define BZ_INITIALISE_CRC(crcVar) \ argument
541 crcVar = 0xffffffffL; \
544 #define BZ_FINALISE_CRC(crcVar) \ argument
546 crcVar = ~(crcVar); \
549 #define BZ_UPDATE_CRC(crcVar,cha) \ argument
551 crcVar = (crcVar << 8) ^ \
552 BZ2_crc32Table[(crcVar >> 24) ^ \
/external/valgrind/exp-sgcheck/tests/
Dhackedbz2.c546 #define BZ_INITIALISE_CRC(crcVar) \ argument
548 crcVar = 0xffffffffL; \
551 #define BZ_FINALISE_CRC(crcVar) \ argument
553 crcVar = ~(crcVar); \
556 #define BZ_UPDATE_CRC(crcVar,cha) \ argument
558 crcVar = (crcVar << 8) ^ \
559 BZ2_crc32Table[(crcVar >> 24) ^ \