Home
last modified time | relevance | path

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

/lib/zlib_deflate/
Ddeftree.c742 int eof /* true if this is the last block for a file */ in zlib_tr_stored_block() argument
745 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */ in zlib_tr_stored_block()
806 int eof /* true if this is the last block for a file */ argument
856 if (eof && s->compressed_len == 0L) { /* force stored file */
858 if (stored_len <= opt_lenb && eof && s->compressed_len==0L && seekable()) {
881 zlib_tr_stored_block(s, buf, stored_len, eof);
888 send_bits(s, (STATIC_TREES<<1)+eof, 3);
892 send_bits(s, (DYN_TREES<<1)+eof, 3);
901 if (eof) {
906 s->compressed_len-7*eof));
Ddefutil.h277 int eof);
280 int eof);
Ddeflate.c831 #define FLUSH_BLOCK_ONLY(s, eof) { \ argument
836 (eof)); \
843 #define FLUSH_BLOCK(s, eof) { \ argument
844 FLUSH_BLOCK_ONLY(s, eof); \
845 if (s->strm->avail_out == 0) return (eof) ? finish_started : need_more; \