summaryrefslogtreecommitdiff
path: root/fitzdraw/archx86.c
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2009-11-29 04:40:31 +0100
committerTor Andersson <tor@ghostscript.com>2009-11-29 04:40:31 +0100
commit2c080e248a47cb94d2069f6523c314d039f70919 (patch)
tree46180621f350edfb63ac578a04125dcd9db31f9d /fitzdraw/archx86.c
parentaf27ce7576c323665bb9986fbbab63acb6c81c17 (diff)
downloadmupdf-2c080e248a47cb94d2069f6523c314d039f70919.tar.xz
Fix up indentation.
Diffstat (limited to 'fitzdraw/archx86.c')
-rw-r--r--fitzdraw/archx86.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/fitzdraw/archx86.c b/fitzdraw/archx86.c
index abbdf1e0..f3d9ef24 100644
--- a/fitzdraw/archx86.c
+++ b/fitzdraw/archx86.c
@@ -12,18 +12,18 @@ typedef unsigned char byte;
#ifdef HAVE_MMX
/* -mmmx for gcc >= 3.4 enables the mmx intrinsic functions, icc and VC
- shouldn't require anything */
+shouldn't require anything */
#include <mmintrin.h>
static void duff_4i1o4mmx(byte *sp0, int sw, byte *mp0, int mw, byte *dp0, int dw, int w0, int h)
{
/*
- rendering all pages of
- x11pdf ~/doc/OpenGL/Presentations/CEDEC2003_Venus_and_Vulcan.pdf
- % cumulative self self total
- time seconds seconds calls ms/call ms/call name
- 30.50 20.04 20.04 261 76.76 76.76 duff_4i1o4
- 21.67 22.02 10.95 221 49.55 49.55 duff_4i1o4mmx
+ rendering all pages of
+ x11pdf ~/doc/OpenGL/Presentations/CEDEC2003_Venus_and_Vulcan.pdf
+ % cumulative self self total
+ time seconds seconds calls ms/call ms/call name
+ 30.50 20.04 20.04 261 76.76 76.76 duff_4i1o4
+ 21.67 22.02 10.95 221 49.55 49.55 duff_4i1o4mmx
*/
__m64 mzero = _mm_setzero_si64();
while (h--)
@@ -89,7 +89,7 @@ getargb(unsigned *s, int w, int h, int u, int v)
static void img_4o4mmx(FZ_PSRC, FZ_PDST, FZ_PCTM)
{
/* since mmx does not have an unsigned multiply instruction we use
- 17.15 fixed point */
+ 17.15 fixed point */
u0 >>= 1; v0 >>= 1;
fa >>= 1; fb >>= 1;
fc >>= 1; fd >>= 1;
@@ -115,8 +115,8 @@ static void img_4o4mmx(FZ_PSRC, FZ_PDST, FZ_PCTM)
int fv = v & 0x7fff;
int atedge =
- (iu < 0) | (iu >= (srcw - 1)) |
- (iv < 0) | (iv >= (srch - 1));
+ (iu < 0) | (iu >= (srcw - 1)) |
+ (iv < 0) | (iv >= (srch - 1));
__m64 ms0s1;
__m64 ms2s3;