Home | History | Annotate | Download | only in libpng

Lines Matching defs:total_len

1570    png_size_t purpose_len, units_len, total_len;
1585 total_len = purpose_len + units_len + 10;
1597 total_len += (png_size_t)params_len[i];
1600 png_debug1(3, "pCAL total length = %d", (int)total_len);
1601 png_write_chunk_start(png_ptr, (png_bytep)png_pCAL, (png_uint_32)total_len);
1634 png_size_t total_len;
1648 total_len = wc_len + 2;
1651 WideCharToMultiByte(CP_ACP, 0, wc_buf, -1, buf + total_len, wc_len,
1653 total_len += wc_len;
1657 total_len = 1 + png_strlen(buf + 1) + 1;
1658 png_snprintf(buf + total_len, 64-total_len, "%12.12e", height);
1659 total_len += png_strlen(buf + total_len);
1662 png_debug1(3, "sCAL total length = %u", (unsigned int)total_len);
1663 png_write_chunk(png_ptr, (png_bytep)png_sCAL, (png_bytep)buf, total_len);
1675 png_size_t wlen, hlen, total_len;
1681 total_len = wlen + hlen + 2;
1682 if (total_len > 64)
1692 png_debug1(3, "sCAL total length = %u", (unsigned int)total_len);
1693 png_write_chunk(png_ptr, (png_bytep)png_sCAL, buf, total_len);