Lines Matching defs:crc32c
601 SPDK_ERRLOG("Failed to append crc32c operation: %d\n", rc);
617 uint32_t crc32c;
628 crc32c = nvme_tcp_pdu_calc_data_digest(pdu);
629 crc32c = crc32c ^ SPDK_CRC32C_XOR;
630 MAKE_DIGEST_WORD(pdu->data_digest, crc32c);
641 uint32_t crc32c;
658 crc32c = nvme_tcp_pdu_calc_data_digest(pdu);
659 crc32c = crc32c ^ SPDK_CRC32C_XOR;
660 MAKE_DIGEST_WORD(pdu->data_digest, crc32c);
673 uint32_t crc32c;
682 crc32c = nvme_tcp_pdu_calc_header_digest(pdu);
683 MAKE_DIGEST_WORD((uint8_t *)&pdu->hdr.raw[hlen], crc32c);
1401 SPDK_ERRLOG("Failed to append crc32c operation: %d\n", rc);
1417 uint32_t crc32c;
1436 crc32c = nvme_tcp_pdu_calc_data_digest(pdu);
1437 crc32c = crc32c ^ SPDK_CRC32C_XOR;
1438 rc = MATCH_DIGEST_WORD(pdu->data_digest, crc32c);
1869 uint32_t crc32c, error_offset = 0;
1878 crc32c = nvme_tcp_pdu_calc_header_digest(pdu);
1879 rc = MATCH_DIGEST_WORD((uint8_t *)pdu->hdr.raw + pdu->hdr.common.hlen, crc32c);