Home | History | Annotate | Download | only in puff

Lines Matching defs:first

34  * 1.0  10 Feb 2002     - First version
226 * - The first code for the shortest length is all zeros. Subsequent codes of
239 int first; /* first code of length len */
241 int index; /* index of first code of length len in symbol table */
243 code = first = index = 0;
247 if (code - count < first) /* if length len, return symbol */
248 return h->symbol[index + (code - first)];
250 first += count;
251 first <<= 1;
267 int first; /* first code of length len */
269 int index; /* index of first code of length len in symbol table */
276 code = first = index = 0;
284 if (code - count < first) { /* if length len, return symbol */
287 return h->symbol[index + (code - first)];
290 first += count;
291 first <<= 1;
543 /* build fixed huffman tables if first call (may not be thread safe) */
633 * described first. This is simply a sequence of up to 19 three-bit values
775 * -5: dynamic block code description: repeat lengths with no first length