Searched refs:crc32_result (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/dev/liquidio/base/
H A Dlio_console.c862 uint32_t crc32_result, i, image_len, rem; local
879 crc32_result = crc32(data, sizeof(struct lio_firmware_file_header) -
881 if (crc32_result != be32toh(h->crc32)) {
883 crc32_result, be32toh(h->crc32));
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_l2.c1576 u32 byte = 0, bit = 0, crc32_result = crc32_seed; local
1582 return crc32_result;
1588 msb = (u8)(crc32_result >> 31);
1589 crc32_result = crc32_result << 1;
1591 crc32_result = crc32_result ^ CRC32_POLY;
1592 crc32_result |= 1; /*crc32_result[0] = 1;*/
1597 return crc32_result;
[all...]
/freebsd-11-stable/sys/dev/bxe/
H A Dbxe.c736 uint32_t crc32_result = crc32_seed; local
743 return (crc32_result);
751 /* msb = crc32_result[31]; */
752 msb = (uint8_t)(crc32_result >> 31);
754 crc32_result = crc32_result << 1;
759 crc32_result = crc32_result ^ CRC32_POLY;
760 /* crc32_result[0] = 1 */
761 crc32_result |
[all...]

Completed in 105 milliseconds