Lines Matching refs:d
41 a->d = mpi_alloc_limb_space(nlimbs); in mpi_alloc()
42 if (!a->d) { in mpi_alloc()
47 a->d = NULL; in mpi_alloc()
79 mpi_free_limb_space(a->d); in mpi_assign_limb_space()
80 a->d = ap; in mpi_assign_limb_space()
95 if (a->d) { in mpi_resize()
99 memcpy(p, a->d, a->alloced * sizeof(mpi_limb_t)); in mpi_resize()
100 kfree_sensitive(a->d); in mpi_resize()
101 a->d = p; in mpi_resize()
103 a->d = kcalloc(nlimbs, sizeof(mpi_limb_t), GFP_KERNEL); in mpi_resize()
104 if (!a->d) in mpi_resize()
117 kfree_sensitive(a->d); in mpi_free()
119 mpi_free_limb_space(a->d); in mpi_free()
145 b->d[i] = a->d[i]; in mpi_copy()