Searched refs:wsize (Results 1 - 12 of 12) sorted by relevance
/ast/src/lib/libz/ |
H A D | inflate.h | 89 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
|
H A D | inffast.c | 81 unsigned wsize; /* window size or zero if not using window */ local 84 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ 108 wsize = state->wsize; 197 from += wsize - op; 207 from += wsize + write - op;
|
H A D | infback.c | 56 state->wsize = 1U << windowBits; 205 left = state->wsize; \ 278 left = state->wsize; 468 if (state->whave < state->wsize) 469 state->whave = state->wsize - left; 470 inflate_fast(strm, state->wsize); 560 if (state->offset > state->wsize - (state->whave < state->wsize ? 571 copy = state->wsize - state->offset; 592 if (left < state->wsize) { [all...] |
H A D | inflate.c | 118 state->wsize = 0; 310 Update the window with the last wsize (normally 32K) bytes written before 341 if (state->wsize == 0) { 342 state->wsize = 1U << state->wbits; 347 /* copy state->wsize or less output bytes into the circular window */ 349 if (copy >= state->wsize) { 350 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize); 352 state->whave = state->wsize; 355 dist = state->wsize [all...] |
H A D | deflate.c | 1272 uInt wsize = s->w_size; local 1280 more = wsize; 1293 if (s->strstart >= wsize+MAX_DIST(s)) { 1295 zmemcpy(s->window, s->window+wsize, (unsigned)wsize); 1296 s->match_start -= wsize; 1297 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */ 1298 s->block_start -= (long) wsize; 1311 *p = (Pos)(m >= wsize ? m-wsize [all...] |
/ast/src/lib/libvcodex/Vcwindow/ |
H A D | vcwvote.c | 90 wm->wsize = size; 185 wm->wsize = size; 249 wm->wsize = dtsz; 263 wm->wsize += 2*VCWEXTRA(dtsz); 266 if((wm->wpos + wm->wsize) > high && (wm->wpos = high - wm->wsize) < 0 ) 268 wm->wsize = (ssize_t)high; 274 !(wm->wdata = sfreserve(sf, wm->wsize, 0)) || 275 sfvalue(sf) < wm->wsize ) 285 /**/DEBUG_PRINT(2,"wsiz=%8d \n",(ssize_t)wm->wsize); [all...] |
H A D | vcwdecode.c | 57 vcw->match.wsize = size;
|
H A D | vcwindow.h | 37 ssize_t wsize; /* size of matching window */ member in struct:_vcwmatch_s
|
H A D | vcwmirror.c | 63 wm->wsize = mtsz;
|
H A D | vcwprefix.c | 329 wm->wsize = 0; 351 wm->wsize = (ssize_t)(seg->rmt - seg->lmt); 353 !(wm->wdata = sfreserve(pf->sf, wm->wsize, 0)) || 354 sfvalue(pf->sf) < wm->wsize) 391 wm->wsize = here+dtsz > pf->sfsz ? (ssize_t)(pf->sfsz-here) : dtsz; 395 wm->wsize = (ssize_t)pf->sfsz; 398 !(wm->wdata = sfreserve(pf->sf, wm->wsize, 0)) ) 456 /**/DEBUG_PRINT(2,"wsiz=%8d \n",(ssize_t)wm->wsize);
|
/ast/src/lib/libvcodex/ |
H A D | vcsfio.c | 557 if(wm->wsize > 0 && wm->wpos >= 0) 559 sfdc->vcdc.size = wm->wsize; 567 /**/ DEBUG_PRINT(2,"wsz=%d ", wm->wsize); 590 { vcioputu(&io, wm->wsize); 690 sfdc->vcdc.size = wm->wsize; 941 ssize_t wsize; local 947 wsize = (ssize_t)vcatoi(spec); 951 wsize *= 1024; 953 wsize *= 1024*1024; 963 return wsize; 976 ssize_t wsize; local [all...] |
/ast/src/cmd/INIT/ |
H A D | ratz.c | 1650 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state 2077 unsigned wsize; /* window size or zero if not using window */ local 2080 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */ 2104 wsize = state->wsize; 2193 from += wsize - op; 2203 from += wsize + write - op; 2344 state->wsize = 0; 2529 Update the window with the last wsize (normally 32K) bytes written before 2560 if (state->wsize [all...] |
Completed in 35 milliseconds