summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2003-05-06 21:53:02 +0000
committerjbj <devnull@localhost>2003-05-06 21:53:02 +0000
commit19306b30aa76c22277607a59a2ba6a9ff5eaf7ac (patch)
tree2b6aa7b92c5d248523a8fe0cea9b98fa6cef09ab
parent3743a6283b6e644034ebacf0439a9eb468e25429 (diff)
downloadlibrpm-tizen-19306b30aa76c22277607a59a2ba6a9ff5eaf7ac.tar.gz
librpm-tizen-19306b30aa76c22277607a59a2ba6a9ff5eaf7ac.tar.bz2
librpm-tizen-19306b30aa76c22277607a59a2ba6a9ff5eaf7ac.zip
Use single ndivmod, rather than nmod followed by ndivmod, in mpstr.
CVS patchset: 6820 CVS date: 2003/05/06 21:53:02
-rw-r--r--python/rpmmpw-py.c42
1 files changed, 24 insertions, 18 deletions
diff --git a/python/rpmmpw-py.c b/python/rpmmpw-py.c
index 79b8ba867..de7898867 100644
--- a/python/rpmmpw-py.c
+++ b/python/rpmmpw-py.c
@@ -365,35 +365,41 @@ static void myndivmod(mpw* result, size_t xsize, const mpw* xdata, size_t ysize,
/*@=boundswrite@*/
static char *
-mpstr(char * t, size_t nt, size_t zsize, mpw* zdata, size_t zbase)
+mpstr(char * t, size_t nt, size_t size, mpw* data, mpw base)
{
- size_t size = zsize + 1;
- mpw* wksp = alloca((size+1) * sizeof(*wksp));
- mpw* adata = alloca(size * sizeof(*adata));
- mpw* bdata = alloca(size * sizeof(*bdata));
static char bchars[] = "0123456789abcdefghijklmnopqrstuvwxyz";
+ size_t asize = size + 1;
+ mpw* adata = alloca(asize * sizeof(*adata));
+ size_t anorm;
+ mpw* zdata = alloca((asize+1) * sizeof(*zdata));
+ mpw* wksp = alloca((1+1) * sizeof(*wksp));
size_t result;
if (_mpw_debug < -1)
-fprintf(stderr, "*** mpstr(%p[%d], %p[%d], %d):\t", t, nt, zdata, zsize, zbase), mpfprintln(stderr, zsize, zdata);
+fprintf(stderr, "*** mpstr(%p[%d], %p[%d], %d):\t", t, nt, data, size, base), mpfprintln(stderr, size, data);
- mpsetx(size, bdata, zsize, zdata);
+ mpsetx(asize, adata, size, data);
t[nt] = '\0';
while (nt--) {
- mpsetx(size, adata, size, bdata);
-if (_mpw_debug < -1)
-fprintf(stderr, "*** a: %p[%d]\t", adata, size), mpfprintln(stderr, size, adata);
- mpnmod(bdata, size, adata, 1, &zbase, wksp);
-if (_mpw_debug < -1)
-fprintf(stderr, "*** nmod: %p[%d]\t", bdata, size), mpfprintln(stderr, size, bdata);
- result = bdata[size-1];
+
+ mpndivmod(zdata, asize, adata, 1, &base, wksp);
+
+if (_mpw_debug < 0) {
+fprintf(stderr, " a %p[%d]:\t", adata, asize), mpfprintln(stderr, asize, adata);
+fprintf(stderr, " z %p[%d]:\t", zdata, asize+1), mpfprintln(stderr, asize+1, zdata);
+}
+ result = zdata[asize];
t[nt] = bchars[result];
- mpndivmod(bdata, size, adata, 1, &zbase, wksp);
-if (_mpw_debug < -1)
-fprintf(stderr, "*** ndivmod: %p[%d]\t", bdata, size), mpfprintln(stderr, size, bdata);
- if (mpz(size, bdata))
+
+ if (mpz(asize, zdata))
break;
+
+ anorm = asize - mpsize(asize, zdata);
+ if (anorm < asize)
+ asize -= anorm;
+ mpsetx(asize+1, adata, asize, zdata+anorm);
+ asize++;
}
/* XXX Fill leading zeroes (if any). */
while (nt--)