Lines Matching refs:d
34 for (; a->nlimbs && !a->d[a->nlimbs - 1]; a->nlimbs--) in mpi_normalize()
48 mpi_limb_t alimb = a->d[a->nlimbs - 1]; in mpi_get_nbits()
73 limb = a->d[limbno]; in mpi_test_bit()
91 a->d[i] = 0; in mpi_set_bit()
97 a->d[limbno] |= (A_LIMB_1<<bitno); in mpi_set_bit()
122 x->d[i] = x->d[i+nlimbs]; in mpi_rshift()
123 x->d[i] = 0; in mpi_rshift()
127 mpihelp_rshift(x->d, x->d, x->nlimbs, nbits); in mpi_rshift()
137 x->d[i] = a->d[i]; in mpi_rshift()
146 x->d[i] = x->d[i+nlimbs]; in mpi_rshift()
147 x->d[i] = 0; in mpi_rshift()
151 mpihelp_rshift(x->d, x->d, x->nlimbs, nbits); in mpi_rshift()
163 mpihelp_rshift(x->d, a->d, x->nlimbs, nbits); in mpi_rshift()
169 x->d[i] = a->d[i]; in mpi_rshift()
173 MPN_NORMALIZE(x->d, x->nlimbs); in mpi_rshift()