Lines Matching refs:len
13 spdk_crc32c_update(const void *buf, size_t len, uint32_t crc)
15 return crc32_iscsi((unsigned char *)buf, len, crc);
21 spdk_crc32c_update(const void *buf, size_t len, uint32_t crc)
31 count_post = (uint64_t)((uintptr_t)buf + len) & 7;
32 count_mid = (len - count_pre - count_post) / 8;
61 spdk_crc32c_update(const void *buf, size_t len, uint32_t crc)
70 count_post = (uint64_t)(buf + len) & 7;
71 count_mid = (len - count_pre - count_post) / 8;
104 spdk_crc32c_update(const void *buf, size_t len, uint32_t crc)
106 return crc32_update(&g_crc32c_table, buf, len, crc);
130 spdk_crc32c_nvme(const void *buf, size_t len, uint32_t crc)
132 return ~(spdk_crc32c_update(buf, len, ~crc));