OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pending_buf
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/zlib/
deflate.c
227
/* We overlay
pending_buf
and d_buf+l_buf. This works since the average
294
s->
pending_buf
= (uchf *) overlay;
298
s->
pending_buf
== Z_NULL) {
305
s->l_buf = s->
pending_buf
+ (1+sizeof(ush))*s->lit_bufsize;
373
s->pending_out = s->
pending_buf
;
552
*
pending_buf
.
583
strm->state->pending_out = strm->state->
pending_buf
;
652
strm->adler = crc32(strm->adler, s->
pending_buf
,
695
strm->adler = crc32(strm->adler, s->
pending_buf
+ beg,
706
strm->adler = crc32(strm->adler, s->
pending_buf
+ beg
[
all
...]
deflate.h
100
Bytef *
pending_buf
; /* output still pending */
member in struct:internal_state
101
ulg pending_buf_size; /* size of
pending_buf
*/
278
* IN assertion: there is enough room in
pending_buf
.
280
#define put_byte(s, c) {s->
pending_buf
[s->pending++] = (c);}
Completed in 27 milliseconds