Searched refs:crcp (Results 1 - 9 of 9) sorted by relevance

/linux-master/crypto/
H A Dcrc32_generic.c50 u32 *crcp = shash_desc_ctx(desc); local
52 *crcp = *mctx;
60 u32 *crcp = shash_desc_ctx(desc); local
62 *crcp = crc32_le(*crcp, data, len);
67 static int __crc32_finup(u32 *crcp, const u8 *data, unsigned int len, argument
70 put_unaligned_le32(crc32_le(*crcp, data, len), out);
82 u32 *crcp = shash_desc_ctx(desc); local
84 put_unaligned_le32(*crcp, out);
H A Dcrc32c_generic.c100 static int __chksum_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out) argument
102 put_unaligned_le32(~__crc32c_le(*crcp, data, len), out);
/linux-master/arch/x86/crypto/
H A Dcrc32c-intel_glue.c97 u32 *crcp = shash_desc_ctx(desc); local
99 *crcp = *mctx;
107 u32 *crcp = shash_desc_ctx(desc); local
109 *crcp = crc32c_intel_le_hw(*crcp, data, len);
113 static int __crc32c_intel_finup(u32 *crcp, const u8 *data, unsigned int len, argument
116 *(__le32 *)out = ~cpu_to_le32(crc32c_intel_le_hw(*crcp, data, len));
128 u32 *crcp = shash_desc_ctx(desc); local
130 *(__le32 *)out = ~cpu_to_le32p(crcp);
154 u32 *crcp local
169 __crc32c_pcl_intel_finup(u32 *crcp, const u8 *data, unsigned int len, u8 *out) argument
[all...]
H A Dcrc32-pclmul_glue.c106 u32 *crcp = shash_desc_ctx(desc); local
108 *crcp = *mctx;
116 u32 *crcp = shash_desc_ctx(desc); local
118 *crcp = crc32_pclmul_le(*crcp, data, len);
123 static int __crc32_pclmul_finup(u32 *crcp, const u8 *data, unsigned int len, argument
126 *(__le32 *)out = cpu_to_le32(crc32_pclmul_le(*crcp, data, len));
138 u32 *crcp = shash_desc_ctx(desc); local
140 *(__le32 *)out = cpu_to_le32p(crcp);
/linux-master/arch/sparc/crypto/
H A Dcrc32c_glue.c46 u32 *crcp = shash_desc_ctx(desc); local
48 *crcp = *mctx;
53 extern void crc32c_sparc64(u32 *crcp, const u64 *data, unsigned int len);
80 u32 *crcp = shash_desc_ctx(desc); local
82 *crcp = crc32c_compute(*crcp, data, len);
86 static int __crc32c_sparc64_finup(const u32 *crcp, const u8 *data, argument
89 put_unaligned_le32(~crc32c_compute(*crcp, data, len), out);
101 u32 *crcp = shash_desc_ctx(desc); local
103 put_unaligned_le32(~*crcp, ou
[all...]
/linux-master/arch/powerpc/crypto/
H A Dcrc32c-vpmsum_glue.c85 u32 *crcp = shash_desc_ctx(desc); local
87 *crcp = *mctx;
95 u32 *crcp = shash_desc_ctx(desc); local
97 *crcp = crc32c_vpmsum(*crcp, data, len);
102 static int __crc32c_vpmsum_finup(u32 *crcp, const u8 *data, unsigned int len, argument
105 *(__le32 *)out = ~cpu_to_le32(crc32c_vpmsum(*crcp, data, len));
118 u32 *crcp = shash_desc_ctx(desc); local
120 *(__le32 *)out = ~cpu_to_le32p(crcp);
H A Dcrct10dif-vpmsum_glue.c85 u16 *crcp = shash_desc_ctx(desc); local
87 *(u16 *)out = *crcp;
/linux-master/kernel/locking/
H A Dlocktorture.c1062 struct call_rcu_chain *crcp = container_of(rhp, struct call_rcu_chain, crc_rh); local
1064 if (!smp_load_acquire(&crcp->crc_stop)) {
1066 call_rcu(&crcp->crc_rh, call_rcu_chain_cb); // ... and later start another.
/linux-master/net/ceph/
H A Dmessenger_v2.c487 void *crcp = p + CEPH_PREAMBLE_LEN - CEPH_CRC_LEN; local
500 put_unaligned_le32(crc32c(0, start, crcp - start), crcp);
505 void *crcp = p + CEPH_PREAMBLE_LEN - CEPH_CRC_LEN; local
509 crc = crc32c(0, p, crcp - p);
510 expected_crc = get_unaligned_le32(crcp);
1222 void *crcp = base + base_len - CEPH_CRC_LEN; local
1228 put_unaligned_le32(crc, crcp);
1237 add_out_kvec(con, base, crcp - base);
1239 add_out_kvec(con, crcp, CEPH_CRC_LE
[all...]

Completed in 166 milliseconds