diff options
Diffstat (limited to 'tqtinterface/qt4/src/3rdparty/zlib/inftrees.c')
-rw-r--r-- | tqtinterface/qt4/src/3rdparty/zlib/inftrees.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tqtinterface/qt4/src/3rdparty/zlib/inftrees.c b/tqtinterface/qt4/src/3rdparty/zlib/inftrees.c index 0eb643c..509461d 100644 --- a/tqtinterface/qt4/src/3rdparty/zlib/inftrees.c +++ b/tqtinterface/qt4/src/3rdparty/zlib/inftrees.c @@ -49,7 +49,7 @@ unsigned short FAR *work; unsigned incr; /* for incrementing code, index */ unsigned fill; /* index for replicating entries */ unsigned low; /* low bits for current root entry */ - unsigned tqmask; /* tqmask for low root bits */ + unsigned mask; /* mask for low root bits */ code this; /* table entry for duplication */ code FAR *next; /* next available space in table */ const unsigned short FAR *base; /* base value table to use */ @@ -206,7 +206,7 @@ unsigned short FAR *work; drop = 0; /* current bits to drop from code for index */ low = (unsigned)(-1); /* trigger new sub-table when len > root */ used = 1U << root; /* use root table entries */ - tqmask = used - 1; /* tqmask for comparing low */ + mask = used - 1; /* mask for comparing low */ /* check available table space */ if (type == LENS && used >= ENOUGH - MAXD) @@ -256,7 +256,7 @@ unsigned short FAR *work; } /* create new sub-table if needed */ - if (len > root && (huff & tqmask) != low) { + if (len > root && (huff & mask) != low) { /* if first time, transition to sub-tables */ if (drop == 0) drop = root; @@ -280,7 +280,7 @@ unsigned short FAR *work; return 1; /* point entry in root table to sub-table */ - low = huff & tqmask; + low = huff & mask; (*table)[low].op = (unsigned char)curr; (*table)[low].bits = (unsigned char)root; (*table)[low].val = (unsigned short)(next - *table); @@ -299,7 +299,7 @@ unsigned short FAR *work; this.val = (unsigned short)0; while (huff != 0) { /* when done with sub-table, drop back to root table */ - if (drop != 0 && (huff & tqmask) != low) { + if (drop != 0 && (huff & mask) != low) { drop = 0; len = root; next = *table; |