Lines Matching refs:dctbl
112 int ci, dctbl, actbl; in start_pass_huff() local
129 dctbl = compptr->dc_tbl_no; in start_pass_huff()
135 if (dctbl < 0 || dctbl >= NUM_HUFF_TBLS) in start_pass_huff()
136 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, dctbl); in start_pass_huff()
141 if (entropy->dc_count_ptrs[dctbl] == NULL) in start_pass_huff()
142 entropy->dc_count_ptrs[dctbl] = (long *) in start_pass_huff()
145 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * SIZEOF(long)); in start_pass_huff()
155 jpeg_make_c_derived_tbl(cinfo, TRUE, dctbl, in start_pass_huff()
156 & entropy->dc_derived_tbls[dctbl]); in start_pass_huff()
357 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
387 if (! emit_bits(state, dctbl->ehufco[nbits], dctbl->ehufsi[nbits])) in encode_one_block()
852 int ci, dctbl, actbl; in finish_pass_gather() local
866 dctbl = compptr->dc_tbl_no; in finish_pass_gather()
868 if (! did_dc[dctbl]) { in finish_pass_gather()
869 htblptr = & cinfo->dc_huff_tbl_ptrs[dctbl]; in finish_pass_gather()
872 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->dc_count_ptrs[dctbl]); in finish_pass_gather()
873 did_dc[dctbl] = TRUE; in finish_pass_gather()