Home | History | Annotate | Download | only in zlib

Lines Matching defs:crc2

580     z_word_t crc1, crc2;
613 crc2 = 0;
620 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
625 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc2;
634 crc2 = 0;
641 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
647 crc = multmodp(val, crc) ^ crc2;
742 z_crc_t crc2;
764 crc2 = 0;
787 word2 = crc2 ^ words[2];
807 crc2 = crc_braid_table[0][word2 & 0xff];
824 crc2 ^= crc_braid_table[k][(word2 >> (k << 3)) & 0xff];
847 crc = crc_word(crc2 ^ words[2] ^ crc);
868 z_word_t crc2, word2;
886 crc2 = 0;
909 word2 = crc2 ^ words[2];
929 crc2 = crc_braid_big_table[0][word2 & 0xff];
946 crc2 ^= crc_braid_big_table[k][(word2 >> (k << 3)) & 0xff];
969 comb = crc_word_big(crc2 ^ words[2] ^ comb);
1023 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1027 return multmodp(x2nmodp(len2, 3), crc1) ^ (crc2 & 0xffffffff);
1031 uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) {
1032 return crc32_combine64(crc1, crc2, (z_off64_t)len2);
1049 uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op) {
1050 return multmodp(op, crc1) ^ (crc2 & 0xffffffff);