HomeSort by relevance Sort by last modified time
    Searched refs:htbl (Results 1 - 21 of 21) sorted by null

  /external/libjpeg-turbo/
jchuff.h 42 (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]);
jdhuff.h 187 #define HUFF_DECODE(result,state,htbl,failaction,slowlabel) \
197 if ((nb = (htbl->lookup[look] >> HUFF_LOOKAHEAD)) <= HUFF_LOOKAHEAD) { \
199 result = htbl->lookup[look] & ((1 << HUFF_LOOKAHEAD) - 1); \
202 if ((result=jpeg_huff_decode(&state,get_buffer,bits_left,htbl,nb)) < 0) \
208 #define HUFF_DECODE_FAST(s,nb,htbl) \
211 s = htbl->lookup[s]; \
220 while (s > htbl->maxcode[nb]) { \
225 s = htbl->pub->huffval[ (int) (s + htbl->valoffset[nb]) & 0xFF ]; \
231 register int bits_left, d_derived_tbl * htbl, int min_bits)
    [all...]
jdhuff.c 157 JHUFF_TBL *htbl; local
166 * paralleling the order of the symbols themselves in htbl->huffval[].
172 htbl =
174 if (htbl == NULL)
183 dtbl->pub = htbl; /* fill in back link */
189 i = (int) htbl->bits[l];
222 if (htbl->bits[l]) {
227 p += htbl->bits[l];
248 for (i = 1; i <= (int) htbl->bits[l]; i++, p++) {
253 dtbl->lookup[lookbits] = (l << HUFF_LOOKAHEAD) | htbl->huffval[p]
    [all...]
jcmarker.c 191 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;
jcapimin.c 137 JHUFF_TBL * htbl; local
145 if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
146 htbl->sent_table = suppress;
147 if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
148 htbl->sent_table = suppress;
jchuff.c 218 JHUFF_TBL *htbl; local
226 * paralleling the order of the symbols themselves in htbl->huffval[].
232 htbl =
234 if (htbl == NULL)
248 i = (int) htbl->bits[l];
294 i = htbl->huffval[p];
821 * Generate the best Huffman code table for the given counts, fill htbl.
849 jpeg_gen_optimal_table (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[])
964 MEMCOPY(htbl->bits, bits, sizeof(htbl->bits))
    [all...]
  /external/pdfium/third_party/libjpeg/
jchuff.h 47 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));
jdhuff.h 176 #define HUFF_DECODE(result,state,htbl,failaction,slowlabel) \
186 if ((nb = htbl->look_nbits[look]) != 0) { \
188 result = htbl->look_sym[look]; \
192 if ((result=jpeg_huff_decode(&state,get_buffer,bits_left,htbl,nb)) < 0) \
201 register int bits_left, d_derived_tbl * htbl, int min_bits));
fpdfapi_jdhuff.c 155 JHUFF_TBL *htbl; local
164 * paralleling the order of the symbols themselves in htbl->huffval[].
170 htbl =
172 if (htbl == NULL)
181 dtbl->pub = htbl; /* fill in back link */
187 i = (int) htbl->bits[l];
220 if (htbl->bits[l]) {
225 p += htbl->bits[l];
244 for (i = 1; i <= (int) htbl->bits[l]; i++, p++) {
250 dtbl->look_sym[lookbits] = htbl->huffval[p]
    [all...]
fpdfapi_jcmarker.c 187 JHUFF_TBL * htbl; local
191 htbl = cinfo->ac_huff_tbl_ptrs[index];
194 htbl = cinfo->dc_huff_tbl_ptrs[index];
197 if (htbl == NULL)
200 if (! htbl->sent_table) {
205 length += htbl->bits[i];
211 emit_byte(cinfo, htbl->bits[i]);
214 emit_byte(cinfo, htbl->huffval[i]);
216 htbl->sent_table = TRUE;
fpdfapi_jcapimin.c 123 JHUFF_TBL * htbl; local
131 if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
132 htbl->sent_table = suppress;
133 if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
134 htbl->sent_table = suppress;
fpdfapi_jchuff.c 185 JHUFF_TBL *htbl; local
193 * paralleling the order of the symbols themselves in htbl->huffval[].
199 htbl =
201 if (htbl == NULL)
215 i = (int) htbl->bits[l];
261 i = htbl->huffval[p];
680 * Generate the best Huffman code table for the given counts, fill htbl.
708 jpeg_gen_optimal_table (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[])
823 MEMCOPY(htbl->bits, bits, SIZEOF(htbl->bits))
    [all...]
  /external/opencv3/3rdparty/libjpeg/
jdhuff.c 168 #define HUFF_DECODE(result,state,htbl,failaction,slowlabel) \
178 if ((nb = htbl->look_nbits[look]) != 0) { \
180 result = htbl->look_sym[look]; \
184 if ((result=jpeg_huff_decode(&state,get_buffer,bits_left,htbl,nb)) < 0) \
326 JHUFF_TBL *htbl; local
335 * paralleling the order of the symbols themselves in htbl->huffval[].
341 htbl =
343 if (htbl == NULL)
352 dtbl->pub = htbl; /* fill in back link */
358 i = (int) htbl->bits[l]
1091 d_derived_tbl * htbl; local
1215 d_derived_tbl * htbl; local
    [all...]
jcapimin.c 131 JHUFF_TBL * htbl; local
139 if ((htbl = cinfo->dc_huff_tbl_ptrs[i]) != NULL)
140 htbl->sent_table = suppress;
141 if ((htbl = cinfo->ac_huff_tbl_ptrs[i]) != NULL)
142 htbl->sent_table = suppress;
jcmarker.c 190 JHUFF_TBL * htbl; local
194 htbl = cinfo->ac_huff_tbl_ptrs[index];
197 htbl = cinfo->dc_huff_tbl_ptrs[index];
200 if (htbl == NULL)
203 if (! htbl->sent_table) {
208 length += htbl->bits[i];
214 emit_byte(cinfo, htbl->bits[i]);
217 emit_byte(cinfo, htbl->huffval[i]);
219 htbl->sent_table = TRUE;
jchuff.c 164 JHUFF_TBL *htbl; local
172 * paralleling the order of the symbols themselves in htbl->huffval[].
178 htbl =
180 if (htbl == NULL)
194 i = (int) htbl->bits[l];
240 i = htbl->huffval[p];
    [all...]
  /external/dng_sdk/source/
dng_lossless_jpeg.cpp 120 static void FixHuffTbl (HuffmanTable *htbl)
148 for (i = 1; i <= (int32) htbl->bits [l]; i++)
188 memset (htbl->ehufsi, 0, sizeof (htbl->ehufsi));
193 htbl->ehufco [htbl->huffval [p]] = huffcode [p];
194 htbl->ehufsi [htbl->huffval [p]] = huffsize [p];
205 if (htbl->bits [l])
208 htbl->valptr [l] = (int16) p
3530 HuffmanTable *htbl = &huffTable [index]; local
    [all...]
  /external/pdfium/third_party/libtiff/
tif_jpeg.c 1533 JHUFF_TBL* htbl; local
1544 JHUFF_TBL* htbl; local
    [all...]
  /external/opencv3/3rdparty/libtiff/
tif_jpeg.c 1453 JHUFF_TBL* htbl; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 

Completed in 1221 milliseconds