srcanamdw/codescanner/pyinstaller/source/zlib/inftrees.h
author noe\swadi
Thu, 18 Feb 2010 12:29:02 +0530
changeset 1 22878952f6e2
permissions -rw-r--r--
Committing the CodeScanner Core tool This component has been moved from the StaticAnaApps package. BUG : 5889 (http://developer.symbian.org/webbugs/show_bug.cgi?id=5889).
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     1
/* inftrees.h -- header to use inftrees.c
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     2
 * Copyright (C) 1995-2005 Mark Adler
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     3
 * For conditions of distribution and use, see copyright notice in zlib.h
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     4
 */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     5
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     6
/* WARNING: this file should *not* be used by applications. It is
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     7
   part of the implementation of the compression library and is
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     8
   subject to change. Applications should only use zlib.h.
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
     9
 */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    10
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    11
/* Structure for decoding tables.  Each entry provides either the
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    12
   information needed to do the operation requested by the code that
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    13
   indexed that table entry, or it provides a pointer to another
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    14
   table that indexes more bits of the code.  op indicates whether
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    15
   the entry is a pointer to another table, a literal, a length or
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    16
   distance, an end-of-block, or an invalid code.  For a table
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    17
   pointer, the low four bits of op is the number of index bits of
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    18
   that table.  For a length or distance, the low four bits of op
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    19
   is the number of extra bits to get after the code.  bits is
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    20
   the number of bits in this code or part of the code to drop off
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    21
   of the bit buffer.  val is the actual byte to output in the case
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    22
   of a literal, the base length or distance, or the offset from
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    23
   the current table to the next table.  Each entry is four bytes. */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    24
typedef struct {
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    25
    unsigned char op;           /* operation, extra bits, table bits */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    26
    unsigned char bits;         /* bits in this part of the code */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    27
    unsigned short val;         /* offset in table or code value */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    28
} code;
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    29
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    30
/* op values as set by inflate_table():
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    31
    00000000 - literal
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    32
    0000tttt - table link, tttt != 0 is the number of table index bits
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    33
    0001eeee - length or distance, eeee is the number of extra bits
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    34
    01100000 - end of block
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    35
    01000000 - invalid code
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    36
 */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    37
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    38
/* Maximum size of dynamic tree.  The maximum found in a long but non-
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    39
   exhaustive search was 1444 code structures (852 for length/literals
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    40
   and 592 for distances, the latter actually the result of an
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    41
   exhaustive search).  The true maximum is not known, but the value
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    42
   below is more than safe. */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    43
#define ENOUGH 2048
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    44
#define MAXD 592
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    45
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    46
/* Type of code to build for inftable() */
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    47
typedef enum {
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    48
    CODES,
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    49
    LENS,
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    50
    DISTS
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    51
} codetype;
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    52
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    53
extern int inflate_table OF((codetype type, unsigned short FAR *lens,
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    54
                             unsigned codes, code FAR * FAR *table,
22878952f6e2 Committing the CodeScanner Core tool
noe\swadi
parents:
diff changeset
    55
                             unsigned FAR *bits, unsigned short FAR *work));