Home | History | Annotate | Download | only in modes

Lines Matching refs:U64

179 	union { u64 u[2]; u8 c[16]; } scratch;
197 if (ctx->blocks > (U64(1)<<61)) return -2; /* too much data */
201 union { u64 u[2]; u8 c[16]; } temp;
207 ctx->cmac.u[0] ^= ((u64*)inp)[0];
208 ctx->cmac.u[1] ^= ((u64*)inp)[1];
218 ((u64*)out)[0] = scratch.u[0]^((u64*)inp)[0];
219 ((u64*)out)[1] = scratch.u[1]^((u64*)inp)[1];
254 union { u64 u[2]; u8 c[16]; } scratch;
272 union { u64 u[2]; u8 c[16]; } temp;
282 ctx->cmac.u[0] ^= (((u64*)out)[0] = scratch.u[0]^((u64*)inp)[0]);
283 ctx->cmac.u[1] ^= (((u64*)out)[1] = scratch.u[1]^((u64*)inp)[1]);
333 union { u64 u[2]; u8 c[16]; } scratch;
351 if (ctx->blocks > (U64(1)<<61)) return -2; /* too much data */
390 union { u64 u[2]; u8 c[16]; } scratch;