HomeSort by relevance Sort by last modified time
    Searched refs:w_size (Results 1 - 14 of 14) sorted by null

  /external/python/cpython3/Modules/zlib/
deflate.c 206 uInt wsize = s->w_size;
313 s->w_size = 1 << s->w_bits;
314 s->w_mask = s->w_size - 1;
321 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
322 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
400 if (dictLength >= s->w_size) {
407 dictionary += dictLength - s->w_size; /* use the tail */
408 dictLength = s->w_size;
457 if (len > s->w_size)
458 len = s->w_size;
    [all...]
deflate.h 115 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
116 uInt w_bits; /* log2(w_size) (8..16) */
117 uInt w_mask; /* w_size - 1 */
289 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
  /external/zlib/src/
deflate.c 206 uInt wsize = s->w_size;
313 s->w_size = 1 << s->w_bits;
314 s->w_mask = s->w_size - 1;
321 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
322 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
400 if (dictLength >= s->w_size) {
407 dictionary += dictLength - s->w_size; /* use the tail */
408 dictLength = s->w_size;
457 if (len > s->w_size)
458 len = s->w_size;
    [all...]
deflate.h 115 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
116 uInt w_bits; /* log2(w_size) (8..16) */
117 uInt w_mask; /* w_size - 1 */
289 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
deflate.c 285 s->w_size = 1 << s->w_bits;
286 s->w_mask = s->w_size - 1;
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
347 if (dictLength >= s->w_size) {
354 dictionary += dictLength - s->w_size; /* use the tail */
355 dictLength = s->w_size;
    [all...]
deflate.h 112 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
113 uInt w_bits; /* log2(w_size) (8..16) */
114 uInt w_mask; /* w_size - 1 */
286 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
  /external/python/cpython2/Modules/zlib/
deflate.c 285 s->w_size = 1 << s->w_bits;
286 s->w_mask = s->w_size - 1;
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
347 if (dictLength >= s->w_size) {
354 dictionary += dictLength - s->w_size; /* use the tail */
355 dictLength = s->w_size;
    [all...]
deflate.h 112 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
113 uInt w_bits; /* log2(w_size) (8..16) */
114 uInt w_mask; /* w_size - 1 */
286 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
  /toolchain/binutils/binutils-2.27/zlib/
deflate.c 285 s->w_size = 1 << s->w_bits;
286 s->w_mask = s->w_size - 1;
293 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
294 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
347 if (dictLength >= s->w_size) {
354 dictionary += dictLength - s->w_size; /* use the tail */
355 dictLength = s->w_size;
    [all...]
deflate.h 112 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
113 uInt w_bits; /* log2(w_size) (8..16) */
114 uInt w_mask; /* w_size - 1 */
286 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
deflate.h 109 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
110 uInt w_bits; /* log2(w_size) (8..16) */
111 uInt w_mask; /* w_size - 1 */
276 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
deflate.c 279 s->w_size = 1 << s->w_bits;
280 s->w_mask = s->w_size - 1;
287 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
288 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
    [all...]
  /external/syslinux/com32/lib/zlib/
deflate.h 109 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
110 uInt w_bits; /* log2(w_size) (8..16) */
111 uInt w_mask; /* w_size - 1 */
283 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
deflate.c 273 s->w_size = 1 << s->w_bits;
274 s->w_mask = s->w_size - 1;
281 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
282 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
331 if (length > s->w_size) {
332 length = s->w_size;
    [all...]

Completed in 339 milliseconds