Home
last modified time | relevance | path

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

/lib/zlib_deflate/
Ddeftree.c796 int eof /* true if this is the last block for a file */ in zlib_tr_stored_block() argument
799 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */ in zlib_tr_stored_block()
860 int eof /* true if this is the last block for a file */ argument
910 if (eof && s->compressed_len == 0L) { /* force stored file */
912 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
935 zlib_tr_stored_block(s, buf, stored_len, eof);
942 send_bits(s, (STATIC_TREES<<1)+eof, 3);
946 send_bits(s, (DYN_TREES<<1)+eof, 3);
955 if (eof) {
960 s->compressed_len-7*eof));
Ddefutil.h279 int eof);
282 int eof);
Ddeflate.c827 #define FLUSH_BLOCK_ONLY(s, eof) { \ argument
832 (eof)); \
839 #define FLUSH_BLOCK(s, eof) { \ argument
840 FLUSH_BLOCK_ONLY(s, eof); \
841 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \