X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/b817bfc642225b8c3c0b6a7e42d1fb949b61a606..d4bb7fded5f9a4b0db99f82e88f22effe94f2ff7:/gfx.c diff --git a/gfx.c b/gfx.c index 0fabd5c..b1bdd51 100644 --- a/gfx.c +++ b/gfx.c @@ -1,13 +1,13 @@ /* -*-c-*- * - * $Id: gfx.c,v 1.2 2004/04/08 01:36:15 mdw Exp $ + * $Id$ * * Low-level arithmetic on binary polynomials * * (c) 2000 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of Catacomb. * @@ -15,12 +15,12 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * Catacomb is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with Catacomb; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, @@ -186,12 +186,12 @@ void gfx_mul(mpw *dv, mpw *dvl, const mpw *av, const mpw *avl, /* --- @gfx_div@ --- * * * Arguments: @mpw *qv, *qvl@ = quotient vector base and limit - * @mpw *rv, *rvl@ = dividend/remainder vector base and limit - * @const mpw *dv, *dvl@ = divisor vector base and limit + * @mpw *rv, *rvl@ = dividend/remainder vector base and limit + * @const mpw *dv, *dvl@ = divisor vector base and limit * - * Returns: --- + * Returns: --- * - * Use: Performs division on polynomials over %$\gf{2}$%. + * Use: Performs division on polynomials over %$\gf{2}$%. */ void gfx_div(mpw *qv, mpw *qvl, mpw *rv, mpw *rvl, @@ -276,7 +276,7 @@ void gfx_div(mpw *qv, mpw *qvl, mpw *rv, mpw *rvl, } while (0) #define MAX(x, y) ((x) > (y) ? (x) : (y)) - + static void dumpmp(const char *msg, const mpw *v, const mpw *vl) { fputs(msg, stderr); @@ -302,14 +302,14 @@ static int vadd(dstr *v) gfx_add(d, dl, a, al, b, bl); if (!mpx_ueq(d, dl, c, cl)) { fprintf(stderr, "\n*** vadd failed\n"); - dumpmp(" a", a, al); - dumpmp(" b", b, bl); + dumpmp(" a", a, al); + dumpmp(" b", b, bl); dumpmp("expected", c, cl); dumpmp(" result", d, dl); ok = 0; } - free(a); free(b); free(c); free(d); + xfree(a); xfree(b); xfree(c); xfree(d); return (ok); } @@ -329,14 +329,14 @@ static int vmul(dstr *v) gfx_mul(d, dl, a, al, b, bl); if (!mpx_ueq(d, dl, c, cl)) { fprintf(stderr, "\n*** vmul failed\n"); - dumpmp(" a", a, al); - dumpmp(" b", b, bl); + dumpmp(" a", a, al); + dumpmp(" b", b, bl); dumpmp("expected", c, cl); dumpmp(" result", d, dl); ok = 0; } - free(a); free(b); free(c); free(d); + xfree(a); xfree(b); xfree(c); xfree(d); return (ok); } @@ -367,7 +367,7 @@ static int vdiv(dstr *v) ok = 0; } - free(a); free(b); free(r); free(q); free(qq); + xfree(a); xfree(b); xfree(r); xfree(q); xfree(qq); return (ok); }