Lines Matching refs:crc1
585 z_word_t crc1, crc2;
617 crc1 = 0;
624 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
629 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc1;
638 crc1 = 0;
645 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
651 crc = multmodp(val, crc) ^ crc1;
805 z_crc_t crc1;
828 crc1 = 0;
851 word1 = crc1 ^ words[1];
871 crc1 = crc_braid_table[0][word1 & 0xff];
888 crc1 ^= crc_braid_table[k][(word1 >> (k << 3)) & 0xff];
911 crc = crc_word(crc1 ^ words[1] ^ crc);
932 z_word_t crc1, word1;
950 crc1 = 0;
973 word1 = crc1 ^ words[1];
993 crc1 = crc_braid_big_table[0][word1 & 0xff];
1010 crc1 ^= crc_braid_big_table[k][(word1 >> (k << 3)) & 0xff];
1033 comb = crc_word_big(crc1 ^ words[1] ^ 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);