Home | History | Annotate | Download | only in ciphers

Lines Matching refs:left

103    u16 left, right;
106 left = (u16)(in>>16);
110 left ^= key->kasumi.KOi1[round_no];
111 left = FI( left, key->kasumi.KIi1[round_no] );
112 left ^= right;
116 right ^= left;
118 left ^= key->kasumi.KOi3[round_no];
119 left = FI( left, key->kasumi.KIi3[round_no] );
120 left ^= right;
122 return (((ulong32)right)<<16)+left;
128 /* split out the left and right halves */
143 ulong32 left, right, temp;
150 LOAD32H(left, pt);
154 temp = FL(left, n, skey);
159 left ^= temp;
162 STORE32H(left, ct);
170 ulong32 left, right, temp;
177 LOAD32H(left, ct);
183 left ^= temp;
184 temp = FL(left, n, skey);
189 STORE32H(left, pt);