Searched refs:pNew_buf (Results 1 – 1 of 1) sorted by relevance
942 …tinfl_decompressor decomp; void *pBuf = NULL, *pNew_buf; size_t src_buf_ofs = 0, out_buf_capacity … in tinfl_decompress_mem_to_heap() local958 pNew_buf = MZ_REALLOC(pBuf, new_out_buf_capacity); in tinfl_decompress_mem_to_heap()959 if (!pNew_buf) in tinfl_decompress_mem_to_heap()963 pBuf = pNew_buf; out_buf_capacity = new_out_buf_capacity; in tinfl_decompress_mem_to_heap()1987 size_t new_capacity = p->m_capacity; mz_uint8 *pNew_buf; if (!p->m_expandable) return MZ_FALSE; in tdefl_output_buffer_putter() local1989 pNew_buf = (mz_uint8*)MZ_REALLOC(p->m_pBuf, new_capacity); if (!pNew_buf) return MZ_FALSE; in tdefl_output_buffer_putter()1990 p->m_pBuf = pNew_buf; p->m_capacity = new_capacity; in tdefl_output_buffer_putter()