Lines Matching defs:crc1
578 z_word_t crc1, crc2;
610 crc1 = 0;
617 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
622 crc = multmodp(Z_BATCH_ZEROS, crc) ^ crc1;
631 crc1 = 0;
638 __asm__ volatile("crc32x %w0, %w0, %x1" : "+r"(crc1) : "r"(val1));
644 crc = multmodp(val, crc) ^ crc1;
737 z_crc_t crc1;
760 crc1 = 0;
783 word1 = crc1 ^ words[1];
803 crc1 = crc_braid_table[0][word1 & 0xff];
820 crc1 ^= crc_braid_table[k][(word1 >> (k << 3)) & 0xff];
843 crc = crc_word(crc1 ^ words[1] ^ crc);
864 z_word_t crc1, word1;
882 crc1 = 0;
905 word1 = crc1 ^ words[1];
925 crc1 = crc_braid_big_table[0][word1 & 0xff];
942 crc1 ^= crc_braid_big_table[k][(word1 >> (k << 3)) & 0xff];
965 comb = crc_word_big(crc1 ^ words[1] ^ comb);
1021 uLong ZEXPORT crc32_combine64(uLong crc1, uLong crc2, z_off64_t len2) {
1025 return multmodp(x2nmodp(len2, 3), crc1) ^ (crc2 & 0xffffffff);
1029 uLong ZEXPORT crc32_combine(uLong crc1, uLong crc2, z_off_t len2) {
1030 return crc32_combine64(crc1, crc2, (z_off64_t)len2);
1047 uLong ZEXPORT crc32_combine_op(uLong crc1, uLong crc2, uLong op) {
1048 return multmodp(op, crc1) ^ (crc2 & 0xffffffff);