Searched refs:wsize (Results 1 - 12 of 12) sorted by relevance

/haiku-fatelf/src/libs/zlib/
H A Dinflate.h93 unsigned wsize; /* window size or zero if not using window */ member in struct:inflate_state
H A Dinffast.c80 unsigned wsize; /* window size or zero if not using window */ local
83 unsigned char FAR *window; /* allocated sliding window, if wsize != 0 */
107 wsize = state->wsize;
218 from += wsize - op;
228 from += wsize + wnext - op;
H A Dinfback.c56 state->wsize = 1U << windowBits;
205 left = state->wsize; \
278 left = state->wsize;
477 if (state->whave < state->wsize)
478 state->whave = state->wsize - left;
479 inflate_fast(strm, state->wsize);
569 if (state->offset > state->wsize - (state->whave < state->wsize ?
580 copy = state->wsize - state->offset;
601 if (left < state->wsize) {
[all...]
H A Dinflate.c118 state->wsize = 0;
345 Update the window with the last wsize (normally 32K) bytes written before
376 if (state->wsize == 0) {
377 state->wsize = 1U << state->wbits;
382 /* copy state->wsize or less output bytes into the circular window */
384 if (copy >= state->wsize) {
385 zmemcpy(state->window, strm->next_out - state->wsize, state->wsize);
387 state->whave = state->wsize;
390 dist = state->wsize
[all...]
H A Ddeflate.c1311 uInt wsize = s->w_size; local
1319 more = wsize;
1332 if (s->strstart >= wsize+MAX_DIST(s)) {
1334 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
1335 s->match_start -= wsize;
1336 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
1337 s->block_start -= (long) wsize;
1349 *p = (Pos)(m >= wsize ? m-wsize
[all...]
/haiku-fatelf/src/bin/unzip/
H A Dinflate.c287 # define wsize G._wsize /* wsize is a variable */ macro
289 # define wsize WSIZE /* wsize is a constant */ macro
346 wsize = G.redirect_size, redirSlide = G.redirect_buffer;
348 wsize = WSIZE, redirSlide = slide;
352 G.dstrm.avail_out = wsize;
372 /* windowBits = log2(wsize) */
373 for (i = (unsigned)wsize, windowBits = 0;
428 if ((retval = FLUSH(wsize
[all...]
H A Dinflatef.c45 # define wsize G._wsize /* wsize is a variable */ macro
47 # define wsize WSIZE /* wsize is a constant */ macro
104 wsize = G.redirect_size, redirSlide = G.redirect_buffer;
106 wsize = WSIZE, redirSlide = slide;
110 G.dstrm.avail_out = wsize;
130 /* windowBits = log2(wsize) */
131 for (i = (unsigned)wsize, windowBits = 0;
186 if ((retval = FLUSH(wsize
[all...]
H A Dextract.c1361 ulg wsize; local
1363 # define wsize WSIZE macro
1445 wsize = G.redirect_size; redirSlide = G.redirect_buffer;
1447 wsize = WSIZE; redirSlide = slide;
1454 if (++G.outcnt == wsize) {
/haiku-fatelf/src/libs/pdflib/libs/flate/
H A Ddeflate.c973 uInt wsize = s->w_size; local
980 more = wsize;
991 } else if (s->strstart >= wsize+MAX_DIST(s)) {
993 zmemcpy(s->window, s->window+wsize, (unsigned)wsize);
994 s->match_start -= wsize;
995 s->strstart -= wsize; /* we now have strstart >= MAX_DIST */
996 s->block_start -= (long) wsize;
1008 *p = (Pos)(m >= wsize ? m-wsize
[all...]
/haiku-fatelf/headers/os/drivers/tty/
H A Dttylayer.h48 struct winsize wsize; member in struct:tty
/haiku-fatelf/src/add-ons/kernel/drivers/ports/pc_serial/
H A DTracing.cpp184 TRACE("winsize wsize:\n");
185 trace_winsize(&tty->wsize);
/haiku-fatelf/src/add-ons/input_server/methods/canna/rk/
H A Dnword.c1065 int wsize; local
1067 wsize = (2*p->nw_klen + sizeof(long)-1)/sizeof(long);
1068 if (hp + 1 + wsize < HEAPSIZE) {
1071 heap[hp + wsize] = 0;
1080 switch(wsize) {
1086 for (i = wsize; i--;)
1099 hp += 1 + wsize;

Completed in 86 milliseconds