Lines Matching defs:crc1
580 z_word_t crc1, crc2;
612 crc1 = 0;
619 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
624 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc1;
633 crc1 = 0;
640 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
646 crc = multmodp(val, crc) ^ crc1;
739 z_crc_t crc1;
762 crc1 = 0;
785 word1 = crc1 ^ words[1];
805 crc1 = crc_braid_table[0][word1 & 0xff];
822 crc1 ^= crc_braid_table[k][(word1 >> (k << 3)) & 0xff];
845 crc = crc_word(crc1 ^ words[1] ^ crc);
866 z_word_t crc1, word1;
884 crc1 = 0;
907 word1 = crc1 ^ words[1];
927 crc1 = crc_braid_big_table[0][word1 & 0xff];
944 crc1 ^= crc_braid_big_table[k][(word1 >> (k << 3)) & 0xff];
967 comb = crc_word_big(crc1 ^ words[1] ^ 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);