Searched refs:WINSIZE (Results 1 – 3 of 3) sorted by relevance
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/examples/ |
D | zran.c | 63 #define WINSIZE 32768U /* sliding window size */ macro 71 unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */ 127 memcpy(next->window, window + WINSIZE - left, left); in addpoint() 128 if (left < WINSIZE) in addpoint() 129 memcpy(next->window + left, window, WINSIZE - left); in addpoint() 152 unsigned char window[WINSIZE]; in build_index() 187 strm.avail_out = WINSIZE; in build_index() 256 unsigned char discard[WINSIZE]; in extract() 288 (void)inflateSetDictionary(&strm, here->window, WINSIZE); in extract() 301 if (offset > WINSIZE) { /* skip WINSIZE bytes */ in extract() [all …]
|
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/examples/ |
D | zran.c | 63 #define WINSIZE 32768U /* sliding window size */ macro 71 unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */ 127 memcpy(next->window, window + WINSIZE - left, left); in addpoint() 128 if (left < WINSIZE) in addpoint() 129 memcpy(next->window + left, window, WINSIZE - left); in addpoint() 152 unsigned char window[WINSIZE]; in build_index() 187 strm.avail_out = WINSIZE; in build_index() 256 unsigned char discard[WINSIZE]; in extract() 288 (void)inflateSetDictionary(&strm, here->window, WINSIZE); in extract() 301 if (offset > WINSIZE) { /* skip WINSIZE bytes */ in extract() [all …]
|
/third_party/zlib/examples/ |
D | zran.c | 64 #define WINSIZE 32768U /* sliding window size */ macro 72 unsigned char window[WINSIZE]; /* preceding 32K of uncompressed data */ 125 memcpy(next->window, window + WINSIZE - left, left); in addpoint() 126 if (left < WINSIZE) in addpoint() 127 memcpy(next->window + left, window, WINSIZE - left); in addpoint() 144 unsigned char window[WINSIZE]; in deflate_index_build() 184 strm.avail_out = WINSIZE; in deflate_index_build() 255 unsigned char discard[WINSIZE]; in deflate_index_extract() 287 (void)inflateSetDictionary(&strm, here->window, WINSIZE); in deflate_index_extract() 295 if (offset > WINSIZE) { /* skip WINSIZE bytes */ in deflate_index_extract() [all …]
|