Lines Matching refs:last
329 # define SEPARATOR(i, last, width) \ argument
330 ((i) == (last)? "\n};\n\n" : \
871 void ZLIB_INTERNAL _tr_stored_block(s, buf, stored_len, last) in _tr_stored_block() argument
875 int last; /* one if this is the last block for a file */
877 send_bits(s, (STORED_BLOCK<<1)+last, 3); /* send block type */
925 void ZLIB_INTERNAL _tr_flush_block(s, buf, stored_len, last) in _tr_flush_block() argument
929 int last; /* one if this is the last block for a file */
985 _tr_stored_block(s, buf, stored_len, last);
992 send_bits(s, (STATIC_TREES<<1)+last, 3);
998 send_bits(s, (DYN_TREES<<1)+last, 3);
1012 if (last) {
1019 s->compressed_len-7*last));