Searched refs:sh_2 (Results 1 – 2 of 2) sorted by relevance
44 unsigned sh_1, sh_2; in mpihelp_lshift() local50 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_lshift()53 retval = low_limb >> sh_2; in mpihelp_lshift()57 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2); in mpihelp_lshift()
45 unsigned sh_1, sh_2; in mpihelp_rshift() local51 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_rshift()53 retval = high_limb << sh_2; in mpihelp_rshift()57 wp[i] = (low_limb >> sh_1) | (high_limb << sh_2); in mpihelp_rshift()