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

  /external/libjpeg-turbo/
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...]
jchuff.h 42 (j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]);
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/boringssl/src/crypto/modes/asm/
ghash-x86.pl 139 $Htbl = "esi";
150 &mov ($Zhh,&DWP(4,$Htbl,$Zll));
151 &mov ($Zhl,&DWP(0,$Htbl,$Zll));
152 &mov ($Zlh,&DWP(12,$Htbl,$Zll));
153 &mov ($Zll,&DWP(8,$Htbl,$Zll));
182 &xor ($Zll,&DWP(8,$Htbl,$rem));
183 &xor ($Zlh,&DWP(12,$Htbl,$rem));
184 &xor ($Zhl,&DWP(0,$Htbl,$rem));
185 &xor ($Zhh,&DWP(4,$Htbl,$rem));
214 &xor ($Zll,&DWP(8,$Htbl,$rem))
    [all...]
ghash-x86_64.pl 114 $Htbl="%rsi";
145 mov 8($Htbl,$nlo),$Zlo
146 mov ($Htbl,$nlo),$Zhi
158 xor 8($Htbl,$nhi),$Zlo
160 xor ($Htbl,$nhi),$Zhi
173 xor 8($Htbl,$nlo),$Zlo
175 xor ($Htbl,$nlo),$Zhi
188 xor 8($Htbl,$nlo),$Zlo
190 xor ($Htbl,$nlo),$Zhi
200 xor 8($Htbl,$nhi),$Zl
    [all...]
ghash-armv4.pl 90 $Htbl="r1";
185 add $Zhh,$Htbl,$nlo,lsl#4
186 ldmia $Zhh,{$Zll-$Zhh} @ load Htbl[nlo]
187 add $Thh,$Htbl,$nhi
191 ldmia $Thh,{$Tll-$Thh} @ load Htbl[nhi]
208 add $Thh,$Htbl,$nlo,lsl#4
212 ldmia $Thh,{$Tll-$Thh} @ load Htbl[nlo]
223 add $Thh,$Htbl,$nhi
227 ldmia $Thh,{$Tll-$Thh} @ load Htbl[nhi]
274 add $Zhh,$Htbl,$nlo,lsl#
    [all...]
ghashv8-armx.pl 46 $Htbl="x1";
144 vld1.64 {$H-$Hhl},[$Htbl] @ load twisted H, ...
215 vld1.64 {$H-$Hhl},[$Htbl],#32 @ load twisted H, ..., H^2
217 vld1.64 {$H2},[$Htbl]
aesni-gcm-x86_64.pl 384 # struct { u128 Xi,H,Htbl[9]; } *Xip);
  /external/pdfium/third_party/libjpeg/
jchuff.h 47 JPP((j_compress_ptr cinfo, JHUFF_TBL * htbl, long freq[]));
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;
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_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/
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;
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...]
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/boringssl/linux-arm/crypto/modes/
ghash-armv4.S 52 ldmia r7,{r4,r5,r6,r7} @ load Htbl[nlo]
57 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nhi]
78 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nlo]
93 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nhi]
198 ldmia r7,{r4,r5,r6,r7} @ load Htbl[nlo]
203 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nhi]
222 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nlo]
237 ldmia r11,{r8,r9,r10,r11} @ load Htbl[nhi]
  /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...]

Completed in 1283 milliseconds