Home
last modified time | relevance | path

Searched refs:eof (Results 1 – 4 of 4) sorted by relevance

/xnu-11215/tests/
H A Dextended_getdirentries64.c22 bool eof = false; variable
37 if (eof) {
43 eof = (*flags & GETDIRENTRIES64_EOF);
/xnu-11215/libkern/zlib/
H A Ddeflate.h314 int eof));
317 int eof));
H A Dtrees.c928 _tr_stored_block(deflate_state *s, charf *buf, ulg stored_len, int eof) in _tr_stored_block() argument
930 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */ in _tr_stored_block()
983 _tr_flush_block(deflate_state *s, charf *buf, ulg stored_len, int eof) argument
1039 _tr_stored_block(s, buf, stored_len, eof);
1046 send_bits(s, (STATIC_TREES<<1)+eof, 3);
1052 send_bits(s, (DYN_TREES<<1)+eof, 3);
1066 if (eof) {
1073 s->compressed_len-7*eof));
H A Ddeflate.c1389 #define FLUSH_BLOCK_ONLY(s, eof) { \ argument
1394 (eof)); \
1401 #define FLUSH_BLOCK(s, eof) { \ argument
1402 FLUSH_BLOCK_ONLY(s, eof); \
1403 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \