Lines Matching defs:crc2
578 z_word_t crc1, crc2;
611 crc2 = 0;
618 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
623 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc2;
632 crc2 = 0;
639 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
645 crc = multmodp(val, crc) ^ crc2;
740 z_crc_t crc2;
762 crc2 = 0;
785 word2 = crc2 ^ words[2];
805 crc2 = crc_braid_table[0][word2 & 0xff];
822 crc2 ^= crc_braid_table[k][(word2 >> (k << 3)) & 0xff];
845 crc = crc_word(crc2 ^ words[2] ^ crc);
866 z_word_t crc2, word2;
884 crc2 = 0;
907 word2 = crc2 ^ words[2];
927 crc2 = crc_braid_big_table[0][word2 & 0xff];
944 crc2 ^= crc_braid_big_table[k][(word2 >> (k << 3)) & 0xff];
967 comb = crc_word_big(crc2 ^ words[2] ^ comb);
1021 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1025 return multmodp(x2nmodp(len2, 3), crc1) ^ (crc2 & 0xffffffff);
1029 uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) {
1030 return crc32_combine64(crc1, crc2, (z_off64_t)len2);
1047 uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op) {
1048 return multmodp(op, crc1) ^ (crc2 & 0xffffffff);