Lines Matching defs:D
122 int32_t C, D;
126 * First, generate C and D by permuting
128 * 8-bit char is not used, so C and D are only 28
135 C = D = 0;
138 D <<= 1;
144 D |= 1;
148 * To generate Ki, rotate C and D according
165 D <<= 1;
166 if (D & BIT28)
167 D |= 1;
172 D <<= 1;
173 if (D & BIT28)
174 D |= 1;
177 * get Ki. Note C and D are concatenated.
195 if (D & (BIT28 >> PC2_D[bit]))