OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bi_buf
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/zlib/
trees.c
78
/* Number of bits used within
bi_buf
. (
bi_buf
might be implemented on
202
/* If not enough room in
bi_buf
, use (valid) bits from
bi_buf
and
207
s->
bi_buf
|= (ush)value << s->bi_valid;
208
put_short(s, s->
bi_buf
);
209
s->
bi_buf
= (ush)value >> (Buf_size - s->bi_valid);
212
s->
bi_buf
|= (ush)value << s->bi_valid;
222
s->
bi_buf
|= (ush)val << s->bi_valid;\
223
put_short(s, s->
bi_buf
);\
[
all
...]
deflate.h
259
ush
bi_buf
;
member in struct:internal_state
264
/* Number of valid bits in
bi_buf
. All bits above the last valid bit
deflate.c
413
strm->state->
bi_buf
= (ush)(value & ((1 << bits) - 1));
[
all
...]
Completed in 379 milliseconds