Lines Matching refs:out_bytes
567 size_t out_bytes = OUT_BUF_SIZE;
581 status = tdefl_compress(&g_deflator, next_in, &in_bytes, next_out, &out_bytes, TDEFL_FINISH);
586 LWIP_ASSERT("out_bytes <= COPY_BUFSIZE", out_bytes <= OUT_BUF_SIZE);
587 if (out_bytes < fsize) {
588 ret_buf = (u8_t *)malloc(out_bytes);
590 memcpy(ret_buf, s_outbuf, out_bytes);
595 size_t dec_in_bytes = out_bytes;
609 *file_size = out_bytes;
610 printf(" - deflate: %d bytes -> %d bytes (%.02f%%)" NEWLINE, (int)fsize, (int)out_bytes, (float)((out_bytes * 100.0) / fsize));
611 deflatedBytesReduced += (size_t)(fsize - out_bytes);
614 printf(" - uncompressed: (would be %d bytes larger using deflate)" NEWLINE, (int)(out_bytes - fsize));