Home
last modified time | relevance | path

Searched refs:dctbl (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/third_party/libjpeg/
Dfpdfapi_jchuff.c112 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
[all …]
Dfpdfapi_jdhuff.c92 int ci, blkn, dctbl, actbl; in start_pass_huff_decoder() local
105 dctbl = compptr->dc_tbl_no; in start_pass_huff_decoder()
109 jpeg_make_d_derived_tbl(cinfo, TRUE, dctbl, in start_pass_huff_decoder()
110 & entropy->dc_derived_tbls[dctbl]); in start_pass_huff_decoder()
547 d_derived_tbl * dctbl = entropy->dc_cur_tbls[blkn]; in decode_mcu() local
554 HUFF_DECODE(s, br_state, dctbl, return FALSE, label1); in decode_mcu()
Dfpdfapi_jcparam.c396 #define SET_COMP(index,id,hsamp,vsamp,quant,dctbl,actbl) \ in jpeg_set_colorspace() argument
402 compptr->dc_tbl_no = (dctbl), \ in jpeg_set_colorspace()
/external/libjpeg-turbo/
Djchuff.c145 int ci, dctbl, actbl; in start_pass_huff() local
162 dctbl = compptr->dc_tbl_no; in start_pass_huff()
168 if (dctbl < 0 || dctbl >= NUM_HUFF_TBLS) in start_pass_huff()
169 ERREXIT1(cinfo, JERR_NO_HUFF_TABLE, dctbl); in start_pass_huff()
174 if (entropy->dc_count_ptrs[dctbl] == NULL) in start_pass_huff()
175 entropy->dc_count_ptrs[dctbl] = (long *) in start_pass_huff()
178 MEMZERO(entropy->dc_count_ptrs[dctbl], 257 * sizeof(long)); in start_pass_huff()
188 jpeg_make_c_derived_tbl(cinfo, TRUE, dctbl, in start_pass_huff()
189 & entropy->dc_derived_tbls[dctbl]); in start_pass_huff()
483 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
[all …]
Djdhuff.c93 int ci, blkn, dctbl, actbl; in start_pass_huff_decoder() local
107 dctbl = compptr->dc_tbl_no; in start_pass_huff_decoder()
111 pdtbl = entropy->dc_derived_tbls + dctbl; in start_pass_huff_decoder()
112 jpeg_make_d_derived_tbl(cinfo, TRUE, dctbl, pdtbl); in start_pass_huff_decoder()
568 d_derived_tbl * dctbl = entropy->dc_cur_tbls[blkn]; in decode_mcu_slow() local
575 HUFF_DECODE(s, br_state, dctbl, return FALSE, label1); in decode_mcu_slow()
667 d_derived_tbl * dctbl = entropy->dc_cur_tbls[blkn]; in decode_mcu_fast() local
671 HUFF_DECODE_FAST(s, l, dctbl); in decode_mcu_fast()
Djcparam.c327 #define SET_COMP(index,id,hsamp,vsamp,quant,dctbl,actbl) \ in jpeg_set_colorspace() argument
333 compptr->dc_tbl_no = (dctbl), \ in jpeg_set_colorspace()
/external/dng_sdk/source/
Ddng_lossless_jpeg.cpp1744 HuffmanTable *dctbl = info.dcHuffTblPtrs [compptr->dcTblNo]; in DecodeFirstRow() local
1750 int32 s = HuffDecode (dctbl); in DecodeFirstRow()
1791 HuffmanTable *dctbl = info.dcHuffTblPtrs [compptr->dcTblNo]; in DecodeFirstRow() local
1797 int32 s = HuffDecode (dctbl); in DecodeFirstRow()
2658 void EncodeOneDiff (int diff, HuffmanTable *dctbl);
2896 inline void dng_lossless_encoder::EncodeOneDiff (int diff, HuffmanTable *dctbl) in EncodeOneDiff() argument
2924 EmitBits (dctbl->ehufco [nbits], in EncodeOneDiff()
2925 dctbl->ehufsi [nbits]); in EncodeOneDiff()
/external/opencv3/3rdparty/libjpeg/
Djcparam.c421 #define SET_COMP(index,id,hsamp,vsamp,quant,dctbl,actbl) \ in jpeg_set_colorspace() argument
427 compptr->dc_tbl_no = (dctbl), \ in jpeg_set_colorspace()
Djchuff.c917 c_derived_tbl *dctbl, c_derived_tbl *actbl) in encode_one_block() argument
949 if (! emit_bits_s(state, dctbl->ehufco[nbits], dctbl->ehufsi[nbits])) in encode_one_block()