OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:wnext
(Results
1 - 9
of
9
) 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
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/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
/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 514 milliseconds