Searched refs:w_size (Results 1 - 2 of 2) sorted by relevance

/forgerock/web-agents-v4/zlib/
H A Ddeflate.c285 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;
1040 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1041 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1052 zmemcpy(ds->window, ss->window, ds->w_size *
[all...]
H A Ddeflate.h112 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)

Completed in 24 milliseconds