OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pending_buf
(Results
1 - 4
of
4
) sorted by relevancy
/src/common/dist/zlib/
deflate.c
459
/* We overlay
pending_buf
and sym_buf. This works since the average size
468
* sym_buf starts one-fourth of the way into
pending_buf
. So there are
469
* three bytes in sym_buf for every four bytes in
pending_buf
. Each symbol
473
* 31 bits are written to
pending_buf
. The closest the written
pending_buf
477
* 8*n bits into
pending_buf
. (Note that the symbol buffer fills when n - 1
498
s->
pending_buf
= (uchf *) ZALLOC(strm, s->lit_bufsize, LIT_BUFS);
502
s->
pending_buf
== Z_NULL) {
509
s->d_buf = (ushf *)(s->
pending_buf
+ (s->lit_bufsize << 1));
510
s->l_buf = s->
pending_buf
+ (s->lit_bufsize << 2)
[
all
...]
deflate.h
109
Bytef *
pending_buf
; /* output still pending */
member in struct:internal_state
110
ulg pending_buf_size; /* size of
pending_buf
*/
287
* IN assertion: there is enough room in
pending_buf
.
289
#define put_byte(s, c) {s->
pending_buf
[s->pending++] = (Bytef)(c);}
trees.c
867
zmemcpy(s->
pending_buf
+ s->pending, (Bytef *)buf, stored_len);
941
/* Check for no overlay of
pending_buf
on needed symbols */
/src/sys/net/
zlib.c
371
Bytef *
pending_buf
; /* output still pending */
member in struct:deflate_state
372
ulg pending_buf_size; /* size of
pending_buf
*/
539
* IN assertion: there is enough room in
pending_buf
.
541
#define put_byte(s, c) {s->
pending_buf
[s->pending++] = (c);}
821
/* We overlay
pending_buf
and d_buf+l_buf. This works since the average
876
s->
pending_buf
= (uchf *) overlay;
880
s->
pending_buf
== Z_NULL) {
887
s->l_buf = s->
pending_buf
+ (1+sizeof(ush))*s->lit_bufsize;
954
s->pending_out = s->
pending_buf
;
1010
*
pending_buf
[
all
...]
Completed in 15 milliseconds
Indexes created Sun Oct 12 09:09:55 GMT 2025