Lines Matching refs:actbl
149 int ci, dctbl, actbl; in start_pass_huff() local
169 actbl = compptr->ac_tbl_no; in start_pass_huff()
176 if (actbl < 0 || actbl >= NUM_HUFF_TBLS) in start_pass_huff()
177 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, actbl); in start_pass_huff()
185 if (entropy->ac_count_ptrs[actbl] == NULL) in start_pass_huff()
186 entropy->ac_count_ptrs[actbl] = (long *) in start_pass_huff()
189 MEMZERO(entropy->ac_count_ptrs[actbl], 257 * sizeof(long)); in start_pass_huff()
196 jpeg_make_c_derived_tbl(cinfo, FALSE, actbl, in start_pass_huff()
197 &entropy->ac_derived_tbls[actbl]); in start_pass_huff()
489 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block_simd() argument
497 dctbl, actbl); in encode_one_block_simd()
506 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
513 int code_0xf0 = actbl->ehufco[0xf0], size_0xf0 = actbl->ehufsi[0xf0]; in encode_one_block()
578 code = actbl->ehufco[temp3]; \ in encode_one_block()
579 size = actbl->ehufsi[temp3]; \ in encode_one_block()
600 code = actbl->ehufco[0]; in encode_one_block()
601 size = actbl->ehufsi[0]; in encode_one_block()
1032 int ci, dctbl, actbl; in finish_pass_gather() local
1047 actbl = compptr->ac_tbl_no; in finish_pass_gather()
1055 if (!did_ac[actbl]) { in finish_pass_gather()
1056 htblptr = &cinfo->ac_huff_tbl_ptrs[actbl]; in finish_pass_gather()
1059 jpeg_gen_optimal_table(cinfo, *htblptr, entropy->ac_count_ptrs[actbl]); in finish_pass_gather()
1060 did_ac[actbl] = TRUE; in finish_pass_gather()