Lines Matching refs:b
134 MPI b; in mpi_copy() local
137 b = mpi_alloc(a->nlimbs); in mpi_copy()
138 if (!b) in mpi_copy()
140 b->nlimbs = a->nlimbs; in mpi_copy()
141 b->sign = a->sign; in mpi_copy()
142 b->flags = a->flags; in mpi_copy()
143 b->flags &= ~(16|32); /* Reset the immutable and constant flags. */ in mpi_copy()
144 for (i = 0; i < b->nlimbs; i++) in mpi_copy()
145 b->d[i] = a->d[i]; in mpi_copy()
147 b = NULL; in mpi_copy()
148 return b; in mpi_copy()