Home | History | Annotate | Download | only in libpng

Lines Matching refs:total_len

1721    png_size_t units_len, total_len;
1742 total_len = purpose_len + units_len + 10;
1755 total_len += params_len[i];
1758 png_debug1(3, "pCAL total length = %d", (int)total_len);
1759 png_write_chunk_header(png_ptr, png_pCAL, (png_uint_32)total_len);
1785 png_size_t wlen, hlen, total_len;
1791 total_len = wlen + hlen + 2;
1793 if (total_len > 64)
1803 png_debug1(3, "sCAL total length = %u", (unsigned int)total_len);
1804 png_write_complete_chunk(png_ptr, png_sCAL, buf, total_len);