HomeSort by relevance Sort by last modified time
    Searched defs:wnext (Results 1 - 15 of 15) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
inffast.c 82 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 - op;
    [all...]
inflate.h 95 unsigned wnext; /* window write index */ member in struct:inflate_state
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
inffast.c 65 unsigned wnext; /* window write index */ local
92 wnext = state->wnext;
200 if (wnext == 0) { /* very common case */
210 else if (wnext < op) { /* wrap around window */
211 from += wsize + wnext - op;
212 op -= wnext;
219 if (wnext < len) { /* some from start of window */
220 op = wnext;
230 from += wnext - op
    [all...]
inflate.h 98 unsigned wnext; /* window write index */ member in struct:inflate_state
  /external/python/cpython2/Modules/zlib/
inffast.c 82 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 - op
    [all...]
inflate.h 95 unsigned wnext; /* window write index */ member in struct:inflate_state
  /external/python/cpython3/Modules/zlib/
inffast.c 65 unsigned wnext; /* window write index */ local
92 wnext = state->wnext;
200 if (wnext == 0) { /* very common case */
210 else if (wnext < op) { /* wrap around window */
211 from += wsize + wnext - op;
212 op -= wnext;
219 if (wnext < len) { /* some from start of window */
220 op = wnext;
230 from += wnext - op
    [all...]
inflate.h 98 unsigned wnext; /* window write index */ member in struct:inflate_state
  /external/syslinux/com32/lib/zlib/
inffast.c 82 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 - op
    [all...]
inflate.h 95 unsigned wnext; /* window write index */ member in struct:inflate_state
  /external/zlib/src/
inffast.c 65 unsigned wnext; /* window write index */ local
92 wnext = state->wnext;
200 if (wnext == 0) { /* very common case */
210 else if (wnext < op) { /* wrap around window */
211 from += wsize + wnext - op;
212 op -= wnext;
219 if (wnext < len) { /* some from start of window */
220 op = wnext;
230 from += wnext - op
    [all...]
inflate.h 98 unsigned wnext; /* window write index */ member in struct:inflate_state
  /toolchain/binutils/binutils-2.27/zlib/
inffast.c 82 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 - op
    [all...]
inflate.h 95 unsigned wnext; /* window write index */ member in struct:inflate_state
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
EventCount.h 149 Waiter* wnext = w->next.load(std::memory_order_relaxed); local
151 if (wnext != nullptr) next = wnext - &waiters_[0];

Completed in 343 milliseconds