Searched defs:huff (Results 1 - 4 of 4) sorted by relevance

/ast/src/cmd/codexlib/zip/
H A Dhuff.c3 #include "huff.h"
41 int huff( function
/ast/src/lib/libvcodex/Vchuff/
H A Dvchuffman.c52 Vchuff_t *huff = vcgetmtdata(vc, Vchuff_t*); local
54 huff->type = 0;
55 huff->maxs = 0;
57 { memcpy(huff->freq, freq, VCH_SIZE*sizeof(freq[0]));
58 huff->type |= VCH_HASFREQ;
61 { memcpy(huff->size, size, VCH_SIZE*sizeof(size[0]));
62 huff->maxs = maxs;
63 huff->type |= VCH_HASSIZE;
84 Vchuff_t *huff = vcgetmtdata(vc, Vchuff_t*); local
85 ssize_t *freq = huff
165 Vchuff_t *huff = vcgetmtdata(vc, Vchuff_t*); local
241 Vchuff_t *huff; local
[all...]
/ast/src/lib/libz/
H A Dinftrees.c54 unsigned huff; /* Huffman code */ local
157 filled is at next and has curr index bits. The code being used is huff
165 of the low root bits of huff. This is saved in low to check for when a
207 huff = 0; /* starting code */
238 /* replicate for those indices with low len bits equal to huff */
244 next[(huff >> drop) + fill] = this;
247 /* backwards increment the len-bit code huff */
249 while (huff & incr)
252 huff &= incr - 1;
253 huff
[all...]
/ast/src/cmd/INIT/
H A Dratz.c1721 unsigned huff; /* Huffman code */ local
1824 filled is at next and has curr index bits. The code being used is huff
1832 of the low root bits of huff. This is saved in low to check for when a
1874 huff = 0; /* starting code */
1905 /* replicate for those indices with low len bits equal to huff */
1911 next[(huff >> drop) + fill] = this;
1914 /* backwards increment the len-bit code huff */
1916 while (huff & incr)
1919 huff &= incr - 1;
1920 huff
[all...]

Completed in 32 milliseconds