| 3133 | // MINIZ_HAS_64BIT_REGISTERS |
| 3134 | |
| 3135 | static mz_bool tdefl_compress_block(tdefl_compressor *d, mz_bool static_block) { |
| 3136 | if (static_block) |
| 3137 | tdefl_start_static_block(d); |
| 3138 | else |
| 3139 | tdefl_start_dynamic_block(d); |
| 3140 | return tdefl_compress_lz_codes(d); |
| 3141 | } |
| 3142 | |
| 3143 | static int tdefl_flush_block(tdefl_compressor *d, int flush) { |
| 3144 | mz_uint saved_bit_buf, saved_bits_in; |
no test coverage detected