Lines Matching refs:dctbl
108 int ci, dctbl, actbl; in start_pass_huff() local
125 dctbl = compptr->dc_tbl_no; in start_pass_huff()
131 if (dctbl < 0 || dctbl >= NUM_HUFF_TBLS) in start_pass_huff()
132 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, dctbl); in start_pass_huff()
137 if (entropy->dc_count_ptrs[dctbl] == NULL) in start_pass_huff()
138 entropy->dc_count_ptrs[dctbl] = (long *) in start_pass_huff()
141 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * SIZEOF(long)); in start_pass_huff()
151 jpeg_make_c_derived_tbl(cinfo, TRUE, dctbl, in start_pass_huff()
152 & entropy->dc_derived_tbls[dctbl]); in start_pass_huff()
353 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
383 if (! emit_bits(state, dctbl->ehufco[nbits], dctbl->ehufsi[nbits])) in encode_one_block()
848 int ci, dctbl, actbl; in finish_pass_gather() local
862 dctbl = compptr->dc_tbl_no; in finish_pass_gather()
864 if (! did_dc[dctbl]) { in finish_pass_gather()
865 htblptr = & cinfo->dc_huff_tbl_ptrs[dctbl]; in finish_pass_gather()
868 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->dc_count_ptrs[dctbl]); in finish_pass_gather()
869 did_dc[dctbl] = TRUE; in finish_pass_gather()