Lines Matching refs:ctrblocks
295 __be64 ctrblocks[3]; in __ctr_crypt() local
301 ctrblocks[0] = cpu_to_be64(ctrblk++); in __ctr_crypt()
302 ctrblocks[1] = cpu_to_be64(ctrblk++); in __ctr_crypt()
303 ctrblocks[2] = cpu_to_be64(ctrblk++); in __ctr_crypt()
305 des3_ede_enc_blk_3way(ctx, (u8 *)ctrblocks, in __ctr_crypt()
306 (u8 *)ctrblocks); in __ctr_crypt()
308 dst[0] = src[0] ^ ctrblocks[0]; in __ctr_crypt()
309 dst[1] = src[1] ^ ctrblocks[1]; in __ctr_crypt()
310 dst[2] = src[2] ^ ctrblocks[2]; in __ctr_crypt()
322 ctrblocks[0] = cpu_to_be64(ctrblk++); in __ctr_crypt()
324 des3_ede_enc_blk(ctx, (u8 *)ctrblocks, (u8 *)ctrblocks); in __ctr_crypt()
326 dst[0] = src[0] ^ ctrblocks[0]; in __ctr_crypt()