Lines Matching refs:crc2
587 z_word_t crc1, crc2;
620 crc2 = 0;
627 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
632 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc2;
641 crc2 = 0;
648 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
654 crc = multmodp(val, crc) ^ crc2;
751 z_crc_t crc2;
773 crc2 = 0;
796 word2 = crc2 ^ words[2];
816 crc2 = crc_braid_table[0][word2 & 0xff];
833 crc2 ^= crc_braid_table[k][(word2 >> (k << 3)) & 0xff];
856 crc = crc_word(crc2 ^ words[2] ^ crc);
877 z_word_t crc2, word2;
895 crc2 = 0;
918 word2 = crc2 ^ words[2];
938 crc2 = crc_braid_big_table[0][word2 & 0xff];
955 crc2 ^= crc_braid_big_table[k][(word2 >> (k << 3)) & 0xff];
978 comb = crc_word_big(crc2 ^ words[2] ^ comb);
1032 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1036 return multmodp(x2nmodp(len2, 3), crc1) ^ (crc2 & 0xffffffff);
1040 uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) {
1041 return crc32_combine64(crc1, crc2, (z_off64_t)len2);
1058 uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op) {
1059 return multmodp(op, crc1) ^ (crc2 & 0xffffffff);