search for: send_bits

Displaying 2 results from an estimated 2 matches for "send_bits".

2007 Sep 22
0
rsync build on IA64 using icc
...ort}" may lose significant bits send_code(s, curlen, s->bl_tree); count--; ^ zlib/trees.c(780): remark #810: conversion from "int" to "ush={unsigned short}" may lose significant bits send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2); ^ zlib/trees.c(780): remark #810: conversion from "int" to "ush={unsigned short}" may lose significant bits send_code(s, REP_3_6, s->bl_tree); send_bits(s, count-3, 2); ^ zlib/trees.c(780): remark #810: conversion fr...
2002 Jan 30
1
Patch: update zlib/* to 1.1.3
...desc; @@ -395,6 +400,7 @@ s->bi_valid = 0; s->last_eob_len = 8; /* enough lookahead for inflate */ #ifdef DEBUG + s->compressed_len = 0L; s->bits_sent = 0L; #endif @@ -867,9 +873,10 @@ int eof; /* true if this is the last block for a file */ { send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */ +#ifdef DEBUG s->compressed_len = (s->compressed_len + 3 + 7) & (ulg)~7L; s->compressed_len += (stored_len + 4) << 3; - +#endif copy_block(s, buf, (unsigned)stored_len, 1); /* with header */ } @@ -889,7...