summaryrefslogtreecommitdiff
path: root/Build/source/texk/dvipsk/scalewidth.c
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2006-01-17 21:41:51 +0000
committerKarl Berry <karl@freefriends.org>2006-01-17 21:41:51 +0000
commit487ca4806cc046076293cf6cc5fbba0db282bac7 (patch)
tree847b412ab5158dd7bdd7ed7e5a4cc3fbca94be32 /Build/source/texk/dvipsk/scalewidth.c
parenta3d3111bfe26b8e5f5bc6049dfb2a4ca2edc7881 (diff)
texk 1
git-svn-id: svn://tug.org/texlive/trunk@1485 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/dvipsk/scalewidth.c')
-rw-r--r--Build/source/texk/dvipsk/scalewidth.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/Build/source/texk/dvipsk/scalewidth.c b/Build/source/texk/dvipsk/scalewidth.c
new file mode 100644
index 00000000000..65c7720bbb4
--- /dev/null
+++ b/Build/source/texk/dvipsk/scalewidth.c
@@ -0,0 +1,32 @@
+/*
+ * Code to scale dimensions. Takes two thirty-two bit integers, multiplies
+ * them, divides them by 2^20, and returns the thirty-two bit result.
+ * The first integer, the width in FIXes, can lie between -2^24 and 2^24-1.
+ * The second integer, the scale factor, can lie between 0 and 2^27-1.
+ *
+ * Here, unlike in TeX, we do the arithmetic exactly. Since the error
+ * in the TeX arithmetic is parts per million, and since dvips makes no
+ * layout decisions, this has no effect. (TeX stipulates that any
+ * implementation of *TeX* needs to do the arithmetic exactly as
+ * specified in TeX, but drivers need not.)
+ *
+ * Since this math is special, we put it in its own file. It is the only
+ * place in the program where such accuracy is required.
+ */
+#include "dvips.h" /* The copyright notice in that file is included too! */
+
+integer
+scalewidth P2C(register integer, a, register integer, b)
+{
+ register integer al, bl ;
+
+ if (a < 0)
+ return -scalewidth(-a, b) ;
+ if (b < 0)
+ return -scalewidth(a, -b) ;
+ al = a & 32767 ;
+ bl = b & 32767 ;
+ a >>= 15 ;
+ b >>= 15 ;
+ return ( ((al*bl/32768) + a*bl+al*b)/32 + a*b*1024) ;
+}