Searched refs:table_num (Results 1 – 2 of 2) sorted by relevance
126 errcode_t table_num; in error_message() local131 table_num = code - offset; in error_message()132 if (table_num == SYS_ERR_BASE) { in error_message()148 if ((et->table->base & 0xffffffL) == (table_num & 0xffffffL)) { in error_message()163 if ((et->table->base & 0xffffffL) == (table_num & 0xffffffL)) { in error_message()180 if (table_num) { in error_message()181 strcat (buffer, error_table_name (table_num)); in error_message()
1110 static void tdefl_optimize_huffman_table(tdefl_compressor *d, int table_num, int table_len, int cod… in tdefl_optimize_huffman_table() argument1115 for (i = 0; i < table_len; i++) num_codes[d->m_huff_code_sizes[table_num][i]]++; in tdefl_optimize_huffman_table()1121 const mz_uint16 *pSym_count = &d->m_huff_count[table_num][0]; in tdefl_optimize_huffman_table()1130 MZ_CLEAR_OBJ(d->m_huff_code_sizes[table_num]); MZ_CLEAR_OBJ(d->m_huff_codes[table_num]); in tdefl_optimize_huffman_table()1132 …for (l = num_codes[i]; l > 0; l--) d->m_huff_code_sizes[table_num][pSyms[--j].m_sym_index] = (mz_u… in tdefl_optimize_huffman_table()1139 …mz_uint rev_code = 0, code, code_size; if ((code_size = d->m_huff_code_sizes[table_num][i]) == 0) … in tdefl_optimize_huffman_table()1141 d->m_huff_codes[table_num][i] = (mz_uint16)rev_code; in tdefl_optimize_huffman_table()