Lines Matching defs:shift
262 int shift;
276 shift = 0;
277 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
279 shift++;
288 if (shift > 0)
290 if (!BN_rshift(B, B, shift)) goto err;
295 shift = 0;
296 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
298 shift++;
307 if (shift > 0)
309 if (!BN_rshift(A, A, shift)) goto err;