Home
last modified time | relevance | path

Searched refs:crc32c (Results 1 – 12 of 12) sorted by relevance

/linux-2.6.39/include/linux/
Dcrc32c.h6 extern u32 crc32c(u32 crc, const void *address, unsigned int length);
9 #define crc32c_le crc32c
/linux-2.6.39/lib/
Dlibcrc32c.c42 u32 crc32c(u32 crc, const void *address, unsigned int length) in crc32c() function
60 EXPORT_SYMBOL(crc32c);
/linux-2.6.39/crypto/
Dcrc32c.c136 static u32 crc32c(u32 crc, const u8 *data, unsigned int length) in crc32c() function
182 ctx->crc = crc32c(ctx->crc, data, length); in chksum_update()
196 *(__le32 *)out = ~cpu_to_le32(crc32c(*crcp, data, len)); in __chksum_finup()
DMakefile80 obj-$(CONFIG_CRYPTO_CRC32C) += crc32c.o
DKconfig313 See Castagnoli93. Module will be crc32c.
322 instruction. This option will create 'crc32c-intel' module,
325 Module will be crc32c-intel.
/linux-2.6.39/fs/btrfs/
Dhash.h25 return crc32c((u32)~1, name, len); in btrfs_name_hash()
Dextent-tree.c980 high_crc = crc32c(high_crc, &lenum, sizeof(lenum)); in hash_extent_data_ref()
982 low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); in hash_extent_data_ref()
984 low_crc = crc32c(low_crc, &lenum, sizeof(lenum)); in hash_extent_data_ref()
Ddisk-io.c197 return crc32c(seed, data, len); in btrfs_csum_data()
/linux-2.6.39/include/net/sctp/
Dchecksum.h51 return crc32c(crc, buffer, length); in sctp_crc32c()
/linux-2.6.39/arch/x86/crypto/
DMakefile17 obj-$(CONFIG_CRYPTO_CRC32C_INTEL) += crc32c-intel.o
/linux-2.6.39/net/ceph/
Dmessenger.c527 cpu_to_le32(crc32c(0, (void *)&m->hdr, in prepare_write_message()
531 cpu_to_le32(crc32c(0, m->front.iov_base, m->front.iov_len)); in prepare_write_message()
534 cpu_to_le32(crc32c(0, m->middle->vec.iov_base, in prepare_write_message()
844 cpu_to_le32(crc32c(tmpcrc, base, len)); in write_partial_msg_pages()
1409 *crc = crc32c(0, section->iov_base, in read_partial_message_section()
1438 crc32c(con->in_data_crc, in read_partial_message_pages()
1474 crc32c(con->in_data_crc, in read_partial_message_bio()
1515 u32 crc = crc32c(0, (void *)&con->in_hdr, in read_partial_message()
/linux-2.6.39/drivers/infiniband/hw/nes/
Dnes.h280 crc_value = crc32c(~0, (void *)nes_quad, sizeof (struct nes_v4_quad)); in get_crc_value()