Searched refs:MZ_MAX (Results 1 – 1 of 1) sorted by relevance
/external/OpenCL-CTS/test_common/miniz/ |
D | miniz.c | 180 #define MZ_MAX(a,b) (((a)>(b))?(a):(b)) macro 357 …return MZ_MAX(128 + (source_len * 110) / 100, 128 + source_len + ((source_len / (31 * 1024)) + 1) … in mz_deflateBound() 861 if ((MZ_MAX(pOut_buf_cur, pSrc) + counter) > pOut_buf_end) in tinfl_decompress() 1226 num_bit_lengths = MZ_MAX(4, (num_bit_lengths + 1)); TDEFL_PUT_BITS(num_bit_lengths - 4, 4); in tdefl_start_dynamic_block() 1988 do { new_capacity = MZ_MAX(128U, new_capacity << 1U); } while (new_size > new_capacity); in tdefl_output_buffer_putter() 2047 …MZ_CLEAR_OBJ(out_buf); out_buf.m_expandable = MZ_TRUE; out_buf.m_capacity = 57+MZ_MAX(64, (1+bpl)*… in tdefl_write_image_to_png_file_in_memory_ex() 2238 …if (growing) { new_capacity = MZ_MAX(1, pArray->m_capacity); while (new_capacity < min_new_capacit… in mz_zip_array_ensure_capacity() 2419 cur_file_ofs = MZ_MAX((mz_int64)pZip->m_archive_size - (mz_int64)sizeof(buf_u32), 0); in mz_zip_reader_read_central_dir() 2435 cur_file_ofs = MZ_MAX(cur_file_ofs - (sizeof(buf_u32) - 3), 0); in mz_zip_reader_read_central_dir() 3245 mz_uint64 new_size = MZ_MAX(file_ofs + n, pState->m_mem_size); in mz_zip_heap_write_func() [all …]
|