Lines Matching refs:d
39 a->d = mpi_alloc_limb_space(nlimbs); in mpi_alloc()
40 if (!a->d) { in mpi_alloc()
45 a->d = NULL; in mpi_alloc()
77 mpi_free_limb_space(a->d); in mpi_assign_limb_space()
78 a->d = ap; in mpi_assign_limb_space()
93 if (a->d) { in mpi_resize()
97 memcpy(p, a->d, a->alloced * sizeof(mpi_limb_t)); in mpi_resize()
98 kfree(a->d); in mpi_resize()
99 a->d = p; in mpi_resize()
101 a->d = kzalloc(nlimbs * sizeof(mpi_limb_t), GFP_KERNEL); in mpi_resize()
102 if (!a->d) in mpi_resize()
115 kfree(a->d); in mpi_free()
117 mpi_free_limb_space(a->d); in mpi_free()