Lines Matching refs:crc2
585 z_word_t crc1, crc2;
618 crc2 = 0;
625 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
630 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc2;
639 crc2 = 0;
646 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc2) : "r"(val2));
652 crc = multmodp(val, crc) ^ crc2;
808 z_crc_t crc2;
830 crc2 = 0;
853 word2 = crc2 ^ words[2];
873 crc2 = crc_braid_table[0][word2 & 0xff];
890 crc2 ^= crc_braid_table[k][(word2 >> (k << 3)) & 0xff];
913 crc = crc_word(crc2 ^ words[2] ^ crc);
934 z_word_t crc2, word2;
952 crc2 = 0;
975 word2 = crc2 ^ words[2];
995 crc2 = crc_braid_big_table[0][word2 & 0xff];
1012 crc2 ^= crc_braid_big_table[k][(word2 >> (k << 3)) & 0xff];
1035 comb = crc_word_big(crc2 ^ words[2] ^ comb);
1124 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1128 return multmodp(x2nmodp(len2, 3), crc1) ^ (crc2 & 0xffffffff);
1132 uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) {
1133 return crc32_combine64(crc1, crc2, (z_off64_t)len2);
1149 uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op) {
1150 return multmodp(op, crc1) ^ (crc2 & 0xffffffff);