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

/ast/src/cmd/ie/
H A Dvi.c156 #define w_size editb.e_wsize /* window size */ macro
474 if( last_phys >= w_size )
477 last_wind = w_size - 1;
1754 * 0 w_size - 1
1820 if( ncur_phys<first_w || ncur_phys>=(first_w + w_size) )
1823 first_w = ncur_phys - (w_size>>1);
1850 if( (p>last_phys || p>=first_w+w_size) && w>last_wind
1861 while( p <= last_phys && w < w_size )
1887 if( last_phys >= w_size )
1891 else if( last_phys < (first_w+w_size) )
[all...]
H A Demacs.c131 #define w_size editb.e_wsize macro
1061 strcat(debugbuf, " w_size=");
1062 strcat(debugbuf, itos(w_size));
1255 print(i)&&((cursor-screen)<(w_size-1)))
1278 if ((offset && i<=offset)||(i >= (offset+w_size)))
1281 offset = i - (w_size>>1);
1287 Is the range of screen[0] thru screen[w_size] up-to-date
1288 with nscreen[offset] thru nscreen[offset+w_size] ?
1295 i = w_size;
1334 if (nscend >= &nscreen[offset+w_size])
[all...]
/ast/src/lib/libz/
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.c279 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));
920 ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
921 ds->prev = (Posf *) ZALLOC(dest, ds->w_size, sizeof(Pos));
932 zmemcpy(ds->window, ss->window, ds->w_size * 2 * sizeof(Byte));
933 zmemcpy(ds->prev, ss->prev, ds->w_size * sizeof(Pos));
989 s->window_size = (ulg)2L*s->w_size;
1272 uInt wsize = s->w_size;
[all...]
/ast/src/cmd/ksh93/edit/
H A Dvi.c163 #define w_size editb.e_wsize /* window size */ macro
452 if( last_phys >= w_size )
455 vp->last_wind = w_size - 1;
1864 * 0 w_size - 1
1952 if( ncur_phys<first_w || ncur_phys>=(first_w + w_size) )
1955 first_w = ncur_phys - (w_size>>1);
1982 if( (p>last_phys || p>=first_w+w_size) && w>vp->last_wind
1993 while( p <= last_phys && w < w_size )
2019 if( last_phys >= w_size )
2023 else if( last_phys < (first_w+w_size) )
[all...]
H A Demacs.c143 #define w_size editb.e_wsize macro
1216 strcat(debugbuf, " w_size=");
1217 strcat(debugbuf, itos(w_size));
1432 print(i)&&((ep->cursor-ep->screen)<(w_size-1)))
1455 if ((ep->offset && i<=ep->offset)||(i >= (ep->offset+w_size)))
1458 ep->offset = i - (w_size>>1);
1464 Is the range of screen[0] thru screen[w_size] up-to-date
1465 with nscreen[offset] thru nscreen[offset+w_size] ?
1472 i = w_size;
1516 if (nscend >= &nscreen[ep->offset+w_size])
[all...]
/ast/src/cmd/INIT/
H A Dratz.c1319 uInt w_size; /* LZ77 window size (32K by default) */ member in struct:internal_state
1320 uInt w_bits; /* log2(w_size) (8..16) */
1321 uInt w_mask; /* w_size - 1 */
1486 #define MAX_DIST(s) ((s)->w_size-MIN_LOOKAHEAD)

Completed in 35 milliseconds