Lines Matching defs:D
176 long C, D;
180 * First, generate C and D by permuting
182 * 8-bit char is not used, so C and D are only 28
189 C = D = 0;
192 D <<= 1;
198 D |= 1;
202 * To generate Ki, rotate C and D according
219 D <<= 1;
220 if (D & BIT28)
221 D |= 1;
226 D <<= 1;
227 if (D & BIT28)
228 D |= 1;
231 * get Ki. Note C and D are concatenated.
247 if (D & (BIT28 >> PC2_D[bit]))