• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/libkern/

Lines Matching refs:value

344 /* Data structure describing a single value and its code string. */
387 int last_flush; /* value of flush param for previous deflate call */
455 * smaller than this value. This mechanism is used only for compression
767 * Update a hash value with the given input byte
1002 * Put a short in the pending buffer. The 16-bit value is put in MSB order.
1043 int old_flush; /* value of flush param for previous deflate call */
1610 * its value will never be used.
1634 /* Initialize the hash value now that we have some input: */
2231 static unsigned bi_reverse OF((unsigned value, int length));
2261 * Send a value on a given number of bits.
2262 * IN assertion: length <= 16 and value fits in length bits.
2265 static void send_bits OF((deflate_state *s, int value, int length));
2267 static void send_bits(deflate_state *s, int value, int length)
2269 Tracevv((stderr," l %2d v %4x ", length, value));
2274 * (16 - bi_valid) bits from value, leaving (width - (16-bi_valid))
2275 * unused bits in value.
2278 s->bi_buf |= (value << s->bi_valid);
2280 s->bi_buf = (ush)value >> (Buf_size - s->bi_valid);
2283 s->bi_buf |= value << s->bi_valid;
2289 #define send_bits(s, value, length) \
2292 int val = value;\
2298 s->bi_buf |= (value) << s->bi_valid;\
2333 int length; /* length value */
2334 int code; /* code value */
2687 ush next_code[MAX_BITS+1]; /* next code value for each bit length */
2688 ush code = 0; /* running code value */
2925 * 3 but the actual value used is 4.)
3360 uLongf *)); /* check value on output */
3404 uLong was; /* computed check value */
3405 uLong need; /* stream check value */
3785 value below is more than safe. */
4532 /* Generate starting offsets into the value table for each length */
4564 /* here i is the Huffman code of length k bits for value *p */
4615 r.base = *p++; /* simple code is just the value */