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

/osnet-11/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Ddeflate.c51 int w_size; member in struct:deflate_state
136 int w_size; local
143 w_size = DEFLATE_SIZE(options[2]);
144 if (w_size < DEFLATE_MIN_SIZE || w_size > DEFLATE_MAX_SIZE)
154 if (inflateInit2(&state->strm, -w_size) != Z_OK) {
159 state->w_size = w_size;
185 || DEFLATE_SIZE(options[2]) != state->w_size
H A Dzlib.c230 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:deflate_state
231 uInt w_bits; /* log2(w_size) (8..16) */
232 uInt w_mask; /* w_size - 1 */
402 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)
625 s->w_size = 1 << s->w_bits;
626 s->w_mask = s->w_size - 1;
633 s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
634 s->prev = (Posf *) ZALLOC(strm, s->w_size, sizeof(Pos));
861 TRY_FREE(strm, state->window, state->w_size * 2 * sizeof(Byte));
862 TRY_FREE(strm, state->prev, state->w_size * sizeo
[all...]
/osnet-11/usr/src/lib/libshell/common/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...]

Completed in 48 milliseconds