Home
last modified time | relevance | path

Searched refs:term2 (Results 1 – 2 of 2) sorted by relevance

/f-stack/freebsd/libkern/
H A Dgsb_crc32.c683 uint32_t term1, term2; in crc32c_sb8_64_bit() local
705 term2 = crc >> 16; in crc32c_sb8_64_bit()
707 sctp_crc_tableil8_o72[term2 & 0x000000FF] ^ in crc32c_sb8_64_bit()
708 sctp_crc_tableil8_o64[(term2 >> 8) & 0x000000FF]; in crc32c_sb8_64_bit()
719 term2 = (*(const uint32_t *) p_buf) >> 16; in crc32c_sb8_64_bit()
722 sctp_crc_tableil8_o40[term2 & 0x000000FF] ^ in crc32c_sb8_64_bit()
723 sctp_crc_tableil8_o32[(term2 >> 8) & 0x000000FF]; in crc32c_sb8_64_bit()
/f-stack/dpdk/lib/librte_hash/
H A Drte_hash_crc.h327 uint32_t crc, term1, term2; in crc32c_1word() local
332 term2 = crc >> 16; in crc32c_1word()
333 crc = term1 ^ CRC32_UPD(term2, 1); in crc32c_1word()
341 uint32_t crc, term1, term2; in crc32c_2words() local
352 term2 = crc >> 16; in crc32c_2words()
353 crc = term1 ^ CRC32_UPD(term2, 5); in crc32c_2words()
355 term2 = d.u32[1] >> 16; in crc32c_2words()
356 crc ^= term1 ^ CRC32_UPD(term2, 1); in crc32c_2words()