1 /* mpiutil.ac - Utility functions for MPI
2 * Copyright (C) 1998, 1999 Free Software Foundation, Inc.
4 * This file is part of GnuPG.
6 * GnuPG is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * GnuPG is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
21 #include "mpi-internal.h"
24 * Note: It was a bad idea to use the number of limbs to allocate
25 * because on a alpha the limbs are large but we normally need
26 * integers of n bits - So we should chnage this to bits (or bytes).
28 * But mpi_alloc is used in a lot of places :-)
30 MPI mpi_alloc(unsigned nlimbs)
34 a = kmalloc(sizeof *a, GFP_KERNEL);
39 a->d = mpi_alloc_limb_space(nlimbs);
55 EXPORT_SYMBOL_GPL(mpi_alloc);
57 mpi_ptr_t mpi_alloc_limb_space(unsigned nlimbs)
59 size_t len = nlimbs * sizeof(mpi_limb_t);
64 return kmalloc(len, GFP_KERNEL);
67 void mpi_free_limb_space(mpi_ptr_t a)
75 void mpi_assign_limb_space(MPI a, mpi_ptr_t ap, unsigned nlimbs)
77 mpi_free_limb_space(a->d);
83 * Resize the array of A to NLIMBS. the additional space is cleared
84 * (set to 0) [done by m_realloc()]
86 int mpi_resize(MPI a, unsigned nlimbs)
90 if (nlimbs <= a->alloced)
91 return 0; /* no need to do it */
94 p = kmalloc(nlimbs * sizeof(mpi_limb_t), GFP_KERNEL);
97 memcpy(p, a->d, a->alloced * sizeof(mpi_limb_t));
101 a->d = kzalloc(nlimbs * sizeof(mpi_limb_t), GFP_KERNEL);
117 mpi_free_limb_space(a->d);
120 pr_info("invalid flag value in mpi\n");
123 EXPORT_SYMBOL_GPL(mpi_free);
125 MODULE_DESCRIPTION("Multiprecision maths library");
126 MODULE_LICENSE("GPL");