Home
last modified time | relevance | path

Searched refs:wnext (Results 1 - 25 of 26) sorted by relevance

12

/third_party/node/deps/v8/third_party/zlib/
H A Dinffast.c69 unsigned wnext; /* window write index */ local
96 wnext = state->wnext;
204 if (wnext == 0) { /* very common case */
214 else if (wnext < op) { /* wrap around window */
215 from += wsize + wnext - op;
216 op -= wnext;
223 if (wnext < len) { /* some from start of window */
224 op = wnext;
234 from += wnext
[all...]
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
154 state->wnext = 0;
419 state->wnext = 0;
426 state->wnext = 0;
430 dist = state->wsize - state->wnext;
432 zmemcpy(state->window + state->wnext, end - copy, dist);
436 state->wnext = copy;
440 state->wnext += dist;
441 if (state->wnext == state->wsize) state->wnext
[all...]
H A Dinflate.h99 unsigned wnext; /* window write index */ member
H A Dinfback.c67 state->wnext = 0;
/third_party/node/deps/zlib/
H A Dinffast.c66 unsigned wnext; /* window write index */ in inflate_fast() local
93 wnext = state->wnext; in inflate_fast()
201 if (wnext == 0) { /* very common case */ in inflate_fast()
211 else if (wnext < op) { /* wrap around window */ in inflate_fast()
212 from += wsize + wnext - op; in inflate_fast()
213 op -= wnext; in inflate_fast()
220 if (wnext < len) { /* some from start of window */ in inflate_fast()
221 op = wnext; in inflate_fast()
231 from += wnext in inflate_fast()
[all...]
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
137 state->wnext = 0; in inflateReset()
386 state->wnext = 0; in updatewindow()
393 state->wnext = 0; in updatewindow()
397 dist = state->wsize - state->wnext; in updatewindow()
399 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow()
403 state->wnext = copy; in updatewindow()
407 state->wnext += dist; in updatewindow()
408 if (state->wnext == state->wsize) state->wnext in updatewindow()
[all...]
H A Dinflate.h99 unsigned wnext; /* window write index */ member
H A Dinfback.c60 state->wnext = 0; in inflateBackInit_()
/third_party/skia/third_party/externals/zlib/
H A Dinffast.c69 unsigned wnext; /* window write index */ local
96 wnext = state->wnext;
204 if (wnext == 0) { /* very common case */
214 else if (wnext < op) { /* wrap around window */
215 from += wsize + wnext - op;
216 op -= wnext;
223 if (wnext < len) { /* some from start of window */
224 op = wnext;
234 from += wnext
[all...]
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
153 state->wnext = 0;
418 state->wnext = 0;
425 state->wnext = 0;
429 dist = state->wsize - state->wnext;
431 zmemcpy(state->window + state->wnext, end - copy, dist);
435 state->wnext = copy;
439 state->wnext += dist;
440 if (state->wnext == state->wsize) state->wnext
[all...]
H A Dinflate.h98 unsigned wnext; /* window write index */ member
H A Dinfback.c67 state->wnext = 0;
/third_party/zlib/
H A Dinffast.c62 unsigned wnext; /* window write index */ in inflate_fast() local
89 wnext = state->wnext; in inflate_fast()
197 if (wnext == 0) { /* very common case */ in inflate_fast()
207 else if (wnext < op) { /* wrap around window */ in inflate_fast()
208 from += wsize + wnext - op; in inflate_fast()
209 op -= wnext; in inflate_fast()
216 if (wnext < len) { /* some from start of window */ in inflate_fast()
217 op = wnext; in inflate_fast()
227 from += wnext in inflate_fast()
[all...]
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
138 state->wnext = 0; in inflateReset()
398 state->wnext = 0; in updatewindow()
405 state->wnext = 0; in updatewindow()
409 dist = state->wsize - state->wnext; in updatewindow()
411 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow()
415 state->wnext = copy; in updatewindow()
419 state->wnext += dist; in updatewindow()
420 if (state->wnext == state->wsize) state->wnext in updatewindow()
[all...]
H A Dinflate.h99 unsigned wnext; /* window write index */ member
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/
H A Dinffast_chunk.c90 unsigned wnext; /* window write index */ local
118 wnext = (state->wnext == 0 && whave >= wsize) ? wsize : state->wnext;
250 if (wnext >= op) { /* contiguous in window */
251 from += wnext - op;
254 op -= wnext;
260 op = wnext;
349 - Three separate decoding do-loops for direct, window, and wnext == 0
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
155 state->wnext = 0;
430 state->wnext = 0;
437 state->wnext = 0;
441 dist = state->wsize - state->wnext;
443 zmemcpy(state->window + state->wnext, end - copy, dist);
447 state->wnext = copy;
451 state->wnext += dist;
452 if (state->wnext == state->wsize) state->wnext
[all...]
/third_party/skia/third_party/externals/zlib/contrib/optimizations/
H A Dinffast_chunk.c90 unsigned wnext; /* window write index */ local
118 wnext = (state->wnext == 0 && whave >= wsize) ? wsize : state->wnext;
250 if (wnext >= op) { /* contiguous in window */
251 from += wnext - op;
254 op -= wnext;
260 op = wnext;
349 - Three separate decoding do-loops for direct, window, and wnext == 0
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
154 state->wnext = 0;
429 state->wnext = 0;
436 state->wnext = 0;
440 dist = state->wsize - state->wnext;
442 zmemcpy(state->window + state->wnext, end - copy, dist);
446 state->wnext = copy;
450 state->wnext += dist;
451 if (state->wnext == state->wsize) state->wnext
[all...]
/third_party/libwebsockets/win32port/zlib/
H A Dinffast.c82 unsigned wnext; /* window write index */ local
109 wnext = state->wnext;
217 if (wnext == 0) { /* very common case */
227 else if (wnext < op) { /* wrap around window */
228 from += wsize + wnext - op;
229 op -= wnext;
236 if (wnext < len) { /* some from start of window */
237 op = wnext;
247 from += wnext
[all...]
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
120 state->wnext = 0;
378 state->wnext = 0;
386 state->wnext = 0;
390 dist = state->wsize - state->wnext;
392 zmemcpy(state->window + state->wnext, strm->next_out - copy, dist);
396 state->wnext = copy;
400 state->wnext += dist;
401 if (state->wnext == state->wsize) state->wnext
[all...]
H A Dinflate.h95 unsigned wnext; /* window write index */ member
H A Dinfback.c58 state->wnext = 0;
/third_party/node/deps/zlib/contrib/optimizations/
H A Dinffast_chunk.c88 unsigned wnext; /* window write index */ in inflate_fast_chunk_() local
116 wnext = (state->wnext == 0 && whave >= wsize) ? wsize : state->wnext; in inflate_fast_chunk_()
268 if (wnext >= op) { /* contiguous in window */ in inflate_fast_chunk_()
269 from += wnext - op; in inflate_fast_chunk_()
272 op -= wnext; in inflate_fast_chunk_()
278 op = wnext; in inflate_fast_chunk_()
366 - Three separate decoding do-loops for direct, window, and wnext == 0
H A Dinflate.c48 * - Pull out common wnext == 0 case for speed in inflate_fast()
138 state->wnext = 0; in inflateReset()
397 state->wnext = 0; in updatewindow()
404 state->wnext = 0; in updatewindow()
408 dist = state->wsize - state->wnext; in updatewindow()
410 zmemcpy(state->window + state->wnext, end - copy, dist); in updatewindow()
414 state->wnext = copy; in updatewindow()
418 state->wnext += dist; in updatewindow()
419 if (state->wnext == state->wsize) state->wnext in updatewindow()
[all...]

Completed in 17 milliseconds

12