Searched defs:htbl (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcapimin.c127 JHUFF_TBL * htbl; local
135 if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
136 htbl->sent_table = suppress;
137 if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
138 htbl->sent_table = suppress;
H A Djdhuff.c156 JHUFF_TBL *htbl; local
165 * paralleling the order of the symbols themselves in htbl->huffval[].
171 htbl =
173 if (htbl == NULL)
182 dtbl->pub = htbl; /* fill in back link */
188 i = (int) htbl->bits[l];
221 if (htbl->bits[l]) {
226 p += htbl->bits[l];
245 for (i = 1; i <= (int) htbl->bits[l]; i++, p++) {
251 dtbl->look_sym[lookbits] = htbl
402 jpeg_huff_decode(bitread_working_state * state, register bit_buf_type get_buffer, register int bits_left, d_derived_tbl * htbl, int min_bits) argument
[all...]
H A Djchuff.c186 JHUFF_TBL *htbl; local
194 * paralleling the order of the symbols themselves in htbl->huffval[].
200 htbl =
202 if (htbl == NULL)
216 i = (int) htbl->bits[l];
262 i = htbl->huffval[p];
681 * Generate the best Huffman code table for the given counts, fill htbl.
709 jpeg_gen_optimal_table (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]) argument
824 MEMCOPY(htbl->bits, bits, SIZEOF(htbl
[all...]
H A Djcmarker.c191 JHUFF_TBL * htbl; local
195 htbl = cinfo->ac_huff_tbl_ptrs[index];
198 htbl = cinfo->dc_huff_tbl_ptrs[index];
201 if (htbl == NULL)
204 if (! htbl->sent_table) {
209 length += htbl->bits[i];
215 emit_byte(cinfo, htbl->bits[i]);
218 emit_byte(cinfo, htbl->huffval[i]);
220 htbl->sent_table = TRUE;

Completed in 35 milliseconds