chiark
/
gitweb
/
~mdw
/
catacomb
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
cleanup: Big pile of whitespace fixes, all at once.
[catacomb]
/
gfx-kmul.c
diff --git
a/gfx-kmul.c
b/gfx-kmul.c
index 940243d38c9c1331a42ec03d8a673550f8895570..ec2bd6d0515684495aaaf22cd806570a07f0a248 100644
(file)
--- a/
gfx-kmul.c
+++ b/
gfx-kmul.c
@@
-7,7
+7,7
@@
* (c) 2000 Straylight/Edgeware
*/
* (c) 2000 Straylight/Edgeware
*/
-/*----- Licensing notice --------------------------------------------------*
+/*----- Licensing notice --------------------------------------------------*
*
* This file is part of Catacomb.
*
*
* 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.
* 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.
* 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,
* 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,
@@
-174,21
+174,21
@@
void gfx_kmul(mpw *dv, mpw *dvl,
#include <mLib/alloc.h>
#include <mLib/testrig.h>
#include <mLib/alloc.h>
#include <mLib/testrig.h>
-#define ALLOC(v, vl, sz) do {
\
- size_t _sz = (sz);
\
- mpw *_vv = xmalloc(MPWS(_sz));
\
- mpw *_vvl = _vv + _sz;
\
- (v) = _vv;
\
- (vl) = _vvl;
\
+#define ALLOC(v, vl, sz) do { \
+ size_t _sz = (sz); \
+ mpw *_vv = xmalloc(MPWS(_sz)); \
+ mpw *_vvl = _vv + _sz; \
+ (v) = _vv; \
+ (vl) = _vvl; \
} while (0)
} while (0)
-#define LOAD(v, vl, d) do {
\
- const dstr *_d = (d); \
- mpw *_v, *_vl;
\
- ALLOC(_v, _vl, MPW_RQ(_d->len));
\
- mpx_loadb(_v, _vl, _d->buf, _d->len); \
- (v) = _v;
\
- (vl) = _vl;
\
+#define LOAD(v, vl, d) do { \
+ const dstr *_d = (d);
\
+ mpw *_v, *_vl; \
+ ALLOC(_v, _vl, MPW_RQ(_d->len)); \
+ mpx_loadb(_v, _vl, _d->buf, _d->len);
\
+ (v) = _v; \
+ (vl) = _vl; \
} while (0)
#define MAX(x, y) ((x) > (y) ? (x) : (y))
} while (0)
#define MAX(x, y) ((x) > (y) ? (x) : (y))
@@
-222,8
+222,8
@@
static int mul(dstr *v)
gfx_kmul(d, dl, a, al, b, bl, s, sl);
if (!mpx_ueq(d, dl, c, cl)) {
fprintf(stderr, "\n*** mul failed\n");
gfx_kmul(d, dl, a, al, b, bl, s, sl);
if (!mpx_ueq(d, dl, c, cl)) {
fprintf(stderr, "\n*** mul 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;
dumpmp("expected", c, cl);
dumpmp(" result", d, dl);
ok = 0;