Lines Matching refs:pLen_out
2102 …e_in_memory_ex(const void *pImage, int w, int h, int num_chans, size_t *pLen_out, mz_uint level, m… in tdefl_write_image_to_png_file_in_memory_ex() argument
2110 *pLen_out = 0; in tdefl_write_image_to_png_file_in_memory_ex()
2138 *pLen_out = out_buf.m_size - 41; in tdefl_write_image_to_png_file_in_memory_ex()
2155 pnghdr[33] = (mz_uint8)(*pLen_out >> 24); in tdefl_write_image_to_png_file_in_memory_ex()
2156 pnghdr[34] = (mz_uint8)(*pLen_out >> 16); in tdefl_write_image_to_png_file_in_memory_ex()
2157 pnghdr[35] = (mz_uint8)(*pLen_out >> 8); in tdefl_write_image_to_png_file_in_memory_ex()
2158 pnghdr[36] = (mz_uint8)*pLen_out; in tdefl_write_image_to_png_file_in_memory_ex()
2167 *pLen_out = 0; in tdefl_write_image_to_png_file_in_memory_ex()
2172 c = (mz_uint32)mz_crc32(MZ_CRC32_INIT, out_buf.m_pBuf + 41 - 4, *pLen_out + 4); in tdefl_write_image_to_png_file_in_memory_ex()
2176 *pLen_out += 57; in tdefl_write_image_to_png_file_in_memory_ex()
2180 …rite_image_to_png_file_in_memory(const void *pImage, int w, int h, int num_chans, size_t *pLen_out) in tdefl_write_image_to_png_file_in_memory() argument
2183 … return tdefl_write_image_to_png_file_in_memory_ex(pImage, w, h, num_chans, pLen_out, 6, MZ_FALSE); in tdefl_write_image_to_png_file_in_memory()