HomeSort by: relevance | last modified time | path
    Searched defs:huffman (Results 1 - 3 of 3) sorted by relevancy

  /src/common/dist/zlib/contrib/blast/
blast.c 97 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of
103 struct huffman { struct
109 * Decode a code from the stream s using huffman table h. Return the symbol or
129 local int decode(struct state *s, struct huffman *h)
179 * Huffman code for n symbols, construct the tables required to decode those
191 local int construct(struct huffman *h, const unsigned char *rep, int n)
254 * terminated by an end code. Literals are either Huffman coded or
295 static struct huffman litcode = {litcnt, litsym}; /* length code */
296 static struct huffman lencode = {lencnt, lensym}; /* length code */
297 static struct huffman distcode = {distcnt, distsym};/* distance code *
    [all...]
  /src/common/dist/zlib/contrib/puff/
puff.c 38 * - Remove longest from struct huffman -- not needed
200 * Huffman code decoding tables. count[1..MAXBITS] is the number of symbols of
206 struct huffman { struct
212 * Decode a code from the stream s using huffman table h. Return the symbol or
235 local int decode(struct state *s, const struct huffman *h)
263 local int decode(struct state *s, const struct huffman *h)
310 * Huffman code for n symbols, construct the tables required to decode those
340 local int construct(struct huffman *h, const short *length, int n)
388 * pairs terminated by and end-of-block code. Literals are simply Huffman
437 const struct huffman *lencode
    [all...]
  /src/sys/dev/stbi/
stb_image.c 1099 // - fast huffman; reasonable integer IDCT
1108 // huffman decoding acceleration
1120 } huffman; typedef in typeref:struct:__anon26c9e3660508
1128 huffman huff_dc[4];
1129 huffman huff_ac[4];
1161 static int build_huffman(huffman *h, int *count)
1222 // decode a jpeg huffman value from the bitstream
1223 __forceinline static int decode(jpeg *j, huffman *h)
1262 // convert the huffman code to the symbol id
1317 static int decode_block(jpeg *j, short data[64], huffman *hdc, huffman *hac, int b
    [all...]

Completed in 15 milliseconds