Searched refs:crc32c (Results 1 – 13 of 13) sorted by relevance
/linux-4.19.296/fs/xfs/libxfs/ |
D | xfs_cksum.h | 20 crc = crc32c(XFS_CRC_SEED, buffer, cksum_offset); in xfs_start_cksum_safe() 23 crc = crc32c(crc, &zero, sizeof(__u32)); in xfs_start_cksum_safe() 26 return crc32c(crc, &buffer[cksum_offset + sizeof(__be32)], in xfs_start_cksum_safe() 41 return crc32c(XFS_CRC_SEED, buffer, length); in xfs_start_cksum_update()
|
/linux-4.19.296/include/linux/ |
D | crc32c.h | 7 extern u32 crc32c(u32 crc, const void *address, unsigned int length); 11 #define crc32c_le crc32c
|
/linux-4.19.296/lib/ |
D | libcrc32c.c | 43 u32 crc32c(u32 crc, const void *address, unsigned int length) in crc32c() function 61 EXPORT_SYMBOL(crc32c);
|
/linux-4.19.296/include/net/sctp/ |
D | checksum.h | 51 return (__force __wsum)crc32c((__force __u32)sum, buff, len); in sctp_csum_update()
|
/linux-4.19.296/fs/gfs2/ |
D | recovery.c | 153 crc = crc32c(~0, (void *)lh + LH_V1_SIZE + 4, in get_log_header()
|
D | log.c | 741 crc = crc32c(~0, (void *)lh + LH_V1_SIZE + 4, in gfs2_write_log_header()
|
/linux-4.19.296/crypto/ |
D | Kconfig | 549 See Castagnoli93. Module will be crc32c. 558 instruction. This option will create 'crc32c-intel' module, 561 Module will be crc32c-intel.
|
/linux-4.19.296/fs/xfs/ |
D | xfs_log.c | 1759 crc = crc32c(crc, &xhdr[i].hic_xheader, in xlog_cksum() 1765 crc = crc32c(crc, dp, size); in xlog_cksum()
|
/linux-4.19.296/fs/btrfs/ |
D | ctree.h | 2570 return crc32c((u32)~1, name, len); in btrfs_name_hash() 2579 return (u64) crc32c(parent_objectid, name, len); in btrfs_extref_hash()
|
D | check-integrity.c | 1730 crc = crc32c(crc, data, sublen); in btrfsic_test_for_metadata()
|
D | extent-tree.c | 1102 high_crc = crc32c(high_crc, &lenum, sizeof(lenum)); in hash_extent_data_ref() 1104 low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); in hash_extent_data_ref() 1106 low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); in hash_extent_data_ref()
|
D | disk-io.c | 254 return crc32c(seed, data, len); in btrfs_csum_data()
|
D | send.c | 699 crc = crc32c(0, (unsigned char *)sctx->send_buf, sctx->send_size); in send_cmd()
|