Home | History | Annotate | Download | only in blast

Lines Matching defs:from

58  * Return need bits from the input stream.  This always leaves less than
63 * - Bits are stored in bytes from the least significant bit to the most
64 * significant bit. Therefore bits are dropped from the bottom of the bit
105 * Decode a code from the stream s using huffman table h. Return the symbol or
114 * bits are pulled from the compressed data one at a time and used to
115 * build the code value reversed from what is in the stream in order to
132 int bitbuf; /* bits from stream */
219 left -= h->count[len]; /* deduct count from possible codes */
265 * copy is from distance bytes back in the output stream, copying for length
286 unsigned char *from, *to; /* copy pointers */
341 /* copy length bytes from distance bytes back */
344 from = to - dist;
347 from += copy;
355 *to++ = *from++;
429 /* Decompress a PKWare Compression Library stream from stdin to stdout */