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

/macosx-10.9.5/ppp-727.90.1/Helpers/pppdump/
H A Ddeflate.c69 int w_size; member in struct:deflate_state
154 int w_size; local
161 w_size = DEFLATE_SIZE(options[2]);
162 if (w_size < DEFLATE_MIN_SIZE || w_size > DEFLATE_MAX_SIZE)
172 if (inflateInit2(&state->strm, -w_size) != Z_OK) {
177 state->w_size = w_size;
203 || DEFLATE_SIZE(options[2]) != state->w_size
H A Dzlib.c252 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:deflate_state
253 uInt w_bits; /* log2(w_size) (8..16) */
254 uInt w_mask; /* w_size - 1 */
424 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
647 s->w_size = 1 << s->w_bits;
648 s->w_mask = s->w_size - 1;
655 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
656 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
883 TRY_FREE(strm, state->window, state->w_size * 2 * sizeof(Byte));
884 TRY_FREE(strm, state->prev, state->w_size * sizeo
[all...]
/macosx-10.9.5/sudo-72/src/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;
1038 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
1039 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
1050 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)
/macosx-10.9.5/rsync-42/rsync/zlib/
H A Ddeflate.h109 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)
H A Ddeflate.c281 s->w_size = 1 << s->w_bits;
282 s->w_mask = s->w_size - 1;
289 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
290 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
922 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
923 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
934 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
935 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos));
991 s->window_size = (ulg)2L*s->w_size;
1274 uInt wsize = s->w_size;
[all...]
/macosx-10.9.5/xnu-2422.115.4/libkern/zlib/
H A Ddeflate.h136 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
137 uInt w_bits; /* log2(w_size) (8..16) */
138 uInt w_mask; /* w_size - 1 */
303 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
H A Ddeflate.c308 s->w_size = 1 << s->w_bits;
309 s->w_mask = s->w_size - 1;
316 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
317 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
949 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
950 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
961 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
962 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos));
1018 s->window_size = (ulg)2L*s->w_size;
1301 uInt wsize = s->w_size;
[all...]
/macosx-10.9.5/zlib-53/zlib/
H A Ddeflate.h109 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)
H A Ddeflate.c273 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;
956 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
957 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
968 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
969 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeo
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/ksh93/edit/
H A Dvi.c168 #define w_size editb.e_wsize /* window size */ macro
457 if( last_phys >= w_size )
460 vp->last_wind = w_size - 1;
1859 * 0 w_size - 1
1948 if( ncur_phys<first_w || ncur_phys>=(first_w + w_size) )
1951 first_w = ncur_phys - (w_size>>1);
1978 if( (p>last_phys || p>=first_w+w_size) && w>vp->last_wind
1989 while( p <= last_phys && w < w_size )
2015 if( last_phys >= w_size )
2019 else if( last_phys < (first_w+w_size) )
[all...]
H A Demacs.c143 #define w_size editb.e_wsize macro
1213 strcat(debugbuf, " w_size=");
1214 strcat(debugbuf, itos(w_size));
1428 print(i)&&((ep->cursor-ep->screen)<(w_size-1)))
1451 if ((ep->offset && i<=ep->offset)||(i >= (ep->offset+w_size)))
1454 ep->offset = i - (w_size>>1);
1460 Is the range of screen[0] thru screen[w_size] up-to-date
1461 with nscreen[offset] thru nscreen[offset+w_size] ?
1468 i = w_size;
1512 if (nscend >= &nscreen[ep->offset+w_size])
[all...]
/macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/
H A Dratz.c1314 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
1315 uInt w_bits; /* log2(w_size) (8..16) */
1316 uInt w_mask; /* w_size - 1 */
1481 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)

Completed in 173 milliseconds