Lines Matching refs:dctbl
150 int ci, dctbl, actbl; in start_pass_huff() local
169 dctbl = compptr->dc_tbl_no; in start_pass_huff()
175 if (dctbl < 0 || dctbl >= NUM_HUFF_TBLS) in start_pass_huff()
176 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, dctbl); in start_pass_huff()
181 if (entropy->dc_count_ptrs[dctbl] == NULL) in start_pass_huff()
182 entropy->dc_count_ptrs[dctbl] = (long *) in start_pass_huff()
185 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * sizeof(long)); in start_pass_huff()
195 jpeg_make_c_derived_tbl(cinfo, TRUE, dctbl, in start_pass_huff()
196 & entropy->dc_derived_tbls[dctbl]); in start_pass_huff()
490 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block_simd() argument
498 dctbl, actbl); in encode_one_block_simd()
507 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
542 code = dctbl->ehufco[nbits]; in encode_one_block()
543 size = dctbl->ehufsi[nbits]; in encode_one_block()
1031 int ci, dctbl, actbl; in finish_pass_gather() local
1045 dctbl = compptr->dc_tbl_no; in finish_pass_gather()
1047 if (! did_dc[dctbl]) { in finish_pass_gather()
1048 htblptr = & cinfo->dc_huff_tbl_ptrs[dctbl]; in finish_pass_gather()
1051 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->dc_count_ptrs[dctbl]); in finish_pass_gather()
1052 did_dc[dctbl] = TRUE; in finish_pass_gather()