Lines Matching defs:crcp
45 u32 *crcp = shash_desc_ctx(desc);
47 *crcp = *mctx;
52 extern void crc32c_sparc64(u32 *crcp, const u64 *data, unsigned int len);
54 static void crc32c_compute(u32 *crcp, const u64 *data, unsigned int len)
60 crc32c_sparc64(crcp, data, asm_len);
65 *crcp = __crc32c_le(*crcp, (const unsigned char *) data, len);
71 u32 *crcp = shash_desc_ctx(desc);
73 crc32c_compute(crcp, (const u64 *) data, len);
78 static int __crc32c_sparc64_finup(u32 *crcp, const u8 *data, unsigned int len,
81 u32 tmp = *crcp;
97 u32 *crcp = shash_desc_ctx(desc);
99 *(__le32 *) out = ~cpu_to_le32p(crcp);