summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/3rdparty/zlib/inffast.c
diff options
context:
space:
mode:
Diffstat (limited to 'tqtinterface/qt4/src/3rdparty/zlib/inffast.c')
-rw-r--r--tqtinterface/qt4/src/3rdparty/zlib/inffast.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tqtinterface/qt4/src/3rdparty/zlib/inffast.c b/tqtinterface/qt4/src/3rdparty/zlib/inffast.c
index 8f0930a..8c02a17 100644
--- a/tqtinterface/qt4/src/3rdparty/zlib/inffast.c
+++ b/tqtinterface/qt4/src/3rdparty/zlib/inffast.c
@@ -82,8 +82,8 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
unsigned bits; /* local strm->bits */
code const FAR *lcode; /* local strm->lencode */
code const FAR *dcode; /* local strm->distcode */
- unsigned ltqmask; /* tqmask for first level of length codes */
- unsigned dtqmask; /* tqmask for first level of distance codes */
+ unsigned lmask; /* mask for first level of length codes */
+ unsigned dmask; /* mask for first level of distance codes */
code this; /* retrieved table entry */
unsigned op; /* code bits, operation, extra bits, or */
/* window position, window bytes to copy */
@@ -106,8 +106,8 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
bits = state->bits;
lcode = state->lencode;
dcode = state->distcode;
- ltqmask = (1U << state->lenbits) - 1;
- dtqmask = (1U << state->distbits) - 1;
+ lmask = (1U << state->lenbits) - 1;
+ dmask = (1U << state->distbits) - 1;
/* decode literals and length/distances until end-of-block or not enough
input data or output space */
@@ -118,7 +118,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
hold += (unsigned long)(PUP(in)) << bits;
bits += 8;
}
- this = lcode[hold & ltqmask];
+ this = lcode[hold & lmask];
dolen:
op = (unsigned)(this.bits);
hold >>= op;
@@ -149,7 +149,7 @@ unsigned start; /* inflate()'s starting value for strm->avail_out */
hold += (unsigned long)(PUP(in)) << bits;
bits += 8;
}
- this = dcode[hold & dtqmask];
+ this = dcode[hold & dmask];
dodist:
op = (unsigned)(this.bits);
hold >>= op;