OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:put_byte
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/zlib/
deflate.c
558
put_byte
(s, (Byte)(b >> 8));
559
put_byte
(s, (Byte)(b & 0xff));
617
put_byte
(s, 31);
618
put_byte
(s, 139);
619
put_byte
(s, 8);
621
put_byte
(s, 0);
622
put_byte
(s, 0);
623
put_byte
(s, 0);
624
put_byte
(s, 0);
625
put_byte
(s, 0)
[
all
...]
deflate.h
280
#define
put_byte
(s, c) {s->pending_buf[s->pending++] = (c);}
macro
trees.c
182
put_byte
(s, (uch)((w) & 0xff)); \
183
put_byte
(s, (uch)((ush)(w) >> 8)); \
[
all
...]
Completed in 32 milliseconds