Lines Matching refs:crc1
587 z_word_t crc1, crc2;
619 crc1 = 0;
626 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
631 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc1;
640 crc1 = 0;
647 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
653 crc = multmodp(val, crc) ^ crc1;
748 z_crc_t crc1;
771 crc1 = 0;
794 word1 = crc1 ^ words[1];
814 crc1 = crc_braid_table[0][word1 & 0xff];
831 crc1 ^= crc_braid_table[k][(word1 >> (k << 3)) & 0xff];
854 crc = crc_word(crc1 ^ words[1] ^ crc);
875 z_word_t crc1, word1;
893 crc1 = 0;
916 word1 = crc1 ^ words[1];
936 crc1 = crc_braid_big_table[0][word1 & 0xff];
953 crc1 ^= crc_braid_big_table[k][(word1 >> (k << 3)) & 0xff];
976 comb = crc_word_big(crc1 ^ words[1] ^ 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);