Lines Matching refs:crcp
45 u32 *crcp = shash_desc_ctx(desc); in crc32c_sparc64_init() local
47 *crcp = *mctx; in crc32c_sparc64_init()
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) in crc32c_compute() argument
60 crc32c_sparc64(crcp, data, asm_len); in crc32c_compute()
65 *crcp = __crc32c_le(*crcp, (const unsigned char *) data, len); in crc32c_compute()
71 u32 *crcp = shash_desc_ctx(desc); in crc32c_sparc64_update() local
73 crc32c_compute(crcp, (const u64 *) data, len); in crc32c_sparc64_update()
78 static int __crc32c_sparc64_finup(u32 *crcp, const u8 *data, unsigned int len, in __crc32c_sparc64_finup() argument
81 u32 tmp = *crcp; in __crc32c_sparc64_finup()
97 u32 *crcp = shash_desc_ctx(desc); in crc32c_sparc64_final() local
99 *(__le32 *) out = ~cpu_to_le32p(crcp); in crc32c_sparc64_final()