Searched refs:sh_1 (Results 1 – 2 of 2) sorted by relevance
44 unsigned sh_1, sh_2; in mpihelp_lshift() local48 sh_1 = cnt; in mpihelp_lshift()50 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_lshift()57 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2); in mpihelp_lshift()60 wp[i] = high_limb << sh_1; in mpihelp_lshift()
45 unsigned sh_1, sh_2; in mpihelp_rshift() local49 sh_1 = cnt; in mpihelp_rshift()51 sh_2 = BITS_PER_MPI_LIMB - sh_1; in mpihelp_rshift()57 wp[i] = (low_limb >> sh_1) | (high_limb << sh_2); in mpihelp_rshift()60 wp[i] = low_limb >> sh_1; in mpihelp_rshift()