Home | History | Annotate | Download | only in bn

Lines Matching refs:shift

263 		int shift;
277 shift = 0;
278 while (!BN_is_bit_set(B, shift)) /* note that 0 < B */
280 shift++;
289 if (shift > 0)
291 if (!BN_rshift(B, B, shift)) goto err;
296 shift = 0;
297 while (!BN_is_bit_set(A, shift)) /* note that 0 < A */
299 shift++;
308 if (shift > 0)
310 if (!BN_rshift(A, A, shift)) goto err;