Lines Matching +full:dynamic +full:- +full:mode
4 /* inflate.h -- internal inflate state definition
5 * Copyright (C) 1995-2004 Mark Adler
29 TYPE, /* i: waiting for type bits, including last-flag bit */
33 TABLE, /* i: waiting for dynamic block table lengths */
42 CHECK, /* i: waiting for 32-bit check value */
43 LENGTH, /* i: waiting for 32-bit length (gzip) */
44 DONE, /* finished check, done -- remain here until reset */
45 BAD, /* got a data error -- remain here until reset */
46 MEM, /* got an inflate() memory error -- remain here until reset */
51 State transitions between above modes -
53 (most modes can go to the BAD or MEM mode -- not shown for clarity)
56 HEAD -> (gzip) or (zlib)
57 (gzip) -> FLAGS -> TIME -> OS -> EXLEN -> EXTRA -> NAME
58 NAME -> COMMENT -> HCRC -> TYPE
59 (zlib) -> DICTID or TYPE
60 DICTID -> DICT -> TYPE
62 TYPE -> STORED or TABLE or LEN or CHECK
63 STORED -> COPY -> TYPE
64 TABLE -> LENLENS -> CODELENS -> LEN
66 LEN -> LENEXT or LIT or TYPE
67 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
68 LIT -> LEN
70 CHECK -> LENGTH -> DONE
75 inflate_mode mode; /* current inflate mode */ member
98 /* fixed and dynamic code tables */
103 /* dynamic table building */
114 /* Reverse the bytes in a 32-bit value */