Lines Matching defs:from
27 * 1.3 24 Aug 2013 - Return unused input from blast()
62 * Return need bits from the input stream. This always leaves less than
67 * - Bits are stored in bytes from the least significant bit to the most
68 * significant bit. Therefore bits are dropped from the bottom of the bit
109 * Decode a code from the stream s using huffman table h. Return the symbol or
118 * bits are pulled from the compressed data one at a time and used to
119 * build the code value reversed from what is in the stream in order to
136 int bitbuf; /* bits from stream */
223 left -= h->count[len]; /* deduct count from possible codes */
269 * copy is from distance bytes back in the output stream, copying for length
290 unsigned char *from, *to; /* copy pointers */
345 /* copy length bytes from distance bytes back */
348 from = to - dist;
351 from += copy;
359 *to++ = *from++;
445 /* Decompress a PKWare Compression Library stream from stdin to stdout */