Searched defs:huffman (Results 1 - 2 of 2) sorted by relevance
/vbox/src/libs/zlib-1.2.6/contrib/puff/ |
H A D | puff.c | 38 * - Remove longest from struct huffman -- not needed 205 struct huffman { struct 211 * Decode a code from the stream s using huffman table h. Return the symbol or 234 local int decode(struct state *s, const struct huffman *h) 262 local int decode(struct state *s, const struct huffman *h) 339 local int construct(struct huffman *h, const short *length, int n) 436 const struct huffman *lencode, 437 const struct huffman *distcode) 540 static struct huffman lencode, distcode; 542 /* build fixed huffman table [all...] |
/vbox/src/libs/zlib-1.2.6/contrib/blast/ |
H A D | blast.c | 97 struct huffman { struct 103 * Decode a code from the stream s using huffman table h. Return the symbol or 123 local int decode(struct state *s, struct huffman *h) 185 local int construct(struct huffman *h, const unsigned char *rep, int n) 289 static struct huffman litcode = {litcnt, litsym}; /* length code */ 290 static struct huffman lencode = {lencnt, lensym}; /* length code */ 291 static struct huffman distcode = {distcnt, distsym};/* distance code */
|
Completed in 191 milliseconds