Lines Matching defs:D
212 int32_t C, D;
216 * First, generate C and D by permuting
218 * 8-bit char is not used, so C and D are only 28
225 C = D = 0;
228 D <<= 1;
234 D |= 1;
238 * To generate Ki, rotate C and D according
255 D <<= 1;
256 if (D & BIT28)
257 D |= 1;
262 D <<= 1;
263 if (D & BIT28)
264 D |= 1;
267 * get Ki. Note C and D are concatenated.
283 if (D & (BIT28 >> PC2_D[bit]))