Home
last modified time | relevance | path

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

/f-stack/dpdk/lib/librte_hash/
H A Drte_hash_crc.h327 uint32_t crc, term1, term2; in crc32c_1word() local
331 term1 = CRC32_UPD(crc, 3); in crc32c_1word()
333 crc = term1 ^ CRC32_UPD(term2, 1); in crc32c_1word()
341 uint32_t crc, term1, term2; in crc32c_2words() local
351 term1 = CRC32_UPD(crc, 7); in crc32c_2words()
353 crc = term1 ^ CRC32_UPD(term2, 5); in crc32c_2words()
354 term1 = CRC32_UPD(d.u32[1], 3); in crc32c_2words()
356 crc ^= term1 ^ CRC32_UPD(term2, 1); in crc32c_2words()
/f-stack/freebsd/libkern/
H A Dgsb_crc32.c683 uint32_t term1, term2; in crc32c_sb8_64_bit() local
703 term1 = sctp_crc_tableil8_o88[crc & 0x000000FF] ^ in crc32c_sb8_64_bit()
706 crc = term1 ^ in crc32c_sb8_64_bit()
716 term1 = sctp_crc_tableil8_o56[(*(const uint32_t *) p_buf) & 0x000000FF] ^ in crc32c_sb8_64_bit()
721 term1 ^ in crc32c_sb8_64_bit()