Lines Matching refs:ctrblocks
279 __be64 ctrblocks[3]; in __ctr_crypt() local
285 ctrblocks[0] = cpu_to_be64(ctrblk++); in __ctr_crypt()
286 ctrblocks[1] = cpu_to_be64(ctrblk++); in __ctr_crypt()
287 ctrblocks[2] = cpu_to_be64(ctrblk++); in __ctr_crypt()
289 des3_ede_enc_blk_3way(ctx, (u8 *)ctrblocks, in __ctr_crypt()
290 (u8 *)ctrblocks); in __ctr_crypt()
292 dst[0] = src[0] ^ ctrblocks[0]; in __ctr_crypt()
293 dst[1] = src[1] ^ ctrblocks[1]; in __ctr_crypt()
294 dst[2] = src[2] ^ ctrblocks[2]; in __ctr_crypt()
306 ctrblocks[0] = cpu_to_be64(ctrblk++); in __ctr_crypt()
308 des3_ede_enc_blk(ctx, (u8 *)ctrblocks, (u8 *)ctrblocks); in __ctr_crypt()
310 dst[0] = src[0] ^ ctrblocks[0]; in __ctr_crypt()