Lines Matching refs:BITS_PER_MPI_LIMB
51 n = BITS_PER_MPI_LIMB; in mpi_get_nbits()
52 n = BITS_PER_MPI_LIMB - n + (a->nlimbs - 1) * BITS_PER_MPI_LIMB; in mpi_get_nbits()
67 limbno = n / BITS_PER_MPI_LIMB; in mpi_test_bit()
68 bitno = n % BITS_PER_MPI_LIMB; in mpi_test_bit()
84 limbno = n / BITS_PER_MPI_LIMB; in mpi_set_bit()
85 bitno = n % BITS_PER_MPI_LIMB; in mpi_set_bit()
103 limbno = n / BITS_PER_MPI_LIMB; in mpi_set_highbit()
104 bitno = n % BITS_PER_MPI_LIMB; in mpi_set_highbit()
113 for (bitno++; bitno < BITS_PER_MPI_LIMB; bitno++) in mpi_set_highbit()
126 limbno = n / BITS_PER_MPI_LIMB; in mpi_clear_highbit()
127 bitno = n % BITS_PER_MPI_LIMB; in mpi_clear_highbit()
132 for ( ; bitno < BITS_PER_MPI_LIMB; bitno++) in mpi_clear_highbit()
144 limbno = n / BITS_PER_MPI_LIMB; in mpi_clear_bit()
145 bitno = n % BITS_PER_MPI_LIMB; in mpi_clear_bit()
182 unsigned int nlimbs = (n/BITS_PER_MPI_LIMB); in mpi_rshift()
183 unsigned int nbits = (n%BITS_PER_MPI_LIMB); in mpi_rshift()
275 unsigned int nlimbs = (n/BITS_PER_MPI_LIMB); in mpi_lshift()
276 unsigned int nbits = (n%BITS_PER_MPI_LIMB); in mpi_lshift()
304 mpi_rshift(x, x, BITS_PER_MPI_LIMB - nbits); in mpi_lshift()