/external/zlib/src/contrib/infback9/ |
inftree9.c | 48 unsigned huff; /* Huffman code */ local 145 filled is at next and has curr index bits. The code being used is huff 153 of the low root bits of huff. This is saved in low to check for when a 194 huff = 0; /* starting code */ 226 /* replicate for those indices with low len bits equal to huff */ 231 next[(huff >> drop) + fill] = this; 234 /* backwards increment the len-bit code huff */ 236 while (huff & incr) 239 huff &= incr - 1; 240 huff += incr [all...] |
/external/opencv3/3rdparty/zlib/ |
inftrees.c | 48 unsigned huff; /* Huffman code */ local 151 filled is at next and has curr index bits. The code being used is huff 159 of the low root bits of huff. This is saved in low to check for when a 200 huff = 0; /* starting code */ 232 /* replicate for those indices with low len bits equal to huff */ 238 next[(huff >> drop) + fill] = here; 241 /* backwards increment the len-bit code huff */ 243 while (huff & incr) 246 huff &= incr - 1; 247 huff += incr [all...] |
/external/pdfium/third_party/zlib_v128/ |
inftrees.c | 48 unsigned huff; /* Huffman code */ local 151 filled is at next and has curr index bits. The code being used is huff 159 of the low root bits of huff. This is saved in low to check for when a 200 huff = 0; /* starting code */ 232 /* replicate for those indices with low len bits equal to huff */ 238 next[(huff >> drop) + fill] = here; 241 /* backwards increment the len-bit code huff */ 243 while (huff & incr) 246 huff &= incr - 1; 247 huff += incr [all...] |
/external/zlib/src/ |
inftrees.c | 48 unsigned huff; /* Huffman code */ local 151 filled is at next and has curr index bits. The code being used is huff 159 of the low root bits of huff. This is saved in low to check for when a 200 huff = 0; /* starting code */ 232 /* replicate for those indices with low len bits equal to huff */ 238 next[(huff >> drop) + fill] = here; 241 /* backwards increment the len-bit code huff */ 243 while (huff & incr) 246 huff &= incr - 1; 247 huff += incr [all...] |
/external/toybox/toys/pending/ |
compress.c | 251 struct huff { struct 261 static void len2huff(struct huff *huff, char bitlen[], int len) 267 memset(huff, 0, sizeof(struct huff)); 268 for (i = 0; i<len; i++) huff->length[bitlen[i]]++; 271 *huff->length = *offset = 0; 272 for (i = 1; i<16; i++) offset[i] = offset[i-1] + huff->length[i-1]; 274 for (i = 0; i<len; i++) if (bitlen[i]) huff->symbol[offset[bitlen[i]]++] = i; 281 static unsigned huff_and_puff(struct bitbuf *bb, struct huff *huff [all...] |
/external/webp/src/dec/ |
vp8l.c | 219 HuffmanCode32* const huff) { 220 huff->bits += hcode.bits; 221 huff->value |= (uint32_t)hcode.value << shift; 222 assert(huff->bits <= HUFFMAN_TABLE_BITS); 230 HuffmanCode32* const huff = &htree_group->packed_table[bits]; local 233 huff->bits = hcode.bits + BITS_SPECIAL_MARKER; 234 huff->value = hcode.value; 236 huff->bits = 0; 237 huff->value = 0; 238 bits >>= AccumulateHCode(hcode, 8, huff); [all...] |
/prebuilts/go/darwin-x86/src/image/jpeg/ |
scan.go | 224 if err := d.refine(&b, &d.huff[acTable][scan[i].ta], zigStart, zigEnd, 1<<al); err != nil { 232 value, err := d.decodeHuffman(&d.huff[dcTable][scan[i].td]) 251 huff := &d.huff[acTable][scan[i].ta] 253 value, err := d.decodeHuffman(huff)
|
huffman.go | 107 h := &d.huff[tc][th]
|
reader.go | 139 huff [maxTc + 1][maxTh + 1]huffman
|
/prebuilts/go/linux-x86/src/image/jpeg/ |
scan.go | 224 if err := d.refine(&b, &d.huff[acTable][scan[i].ta], zigStart, zigEnd, 1<<al); err != nil { 232 value, err := d.decodeHuffman(&d.huff[dcTable][scan[i].td]) 251 huff := &d.huff[acTable][scan[i].ta] 253 value, err := d.decodeHuffman(huff)
|
huffman.go | 107 h := &d.huff[tc][th]
|
reader.go | 139 huff [maxTc + 1][maxTh + 1]huffman
|
/hardware/intel/img/psb_video/src/ |
tng_jpegdec.c | 723 VAHuffmanTableBufferJPEGBaseline *huff = (VAHuffmanTableBufferJPEGBaseline *) obj_buffer->buffer_data; local 734 table_entries += huff->huffman_table[table_id].num_dc_codes[bit_ind]; 741 uint32_t num_codes = huff->huffman_table[table_id].num_dc_codes[bit_ind]; 769 ctx->symbol_codes[0][table_id][table_ind].symbol = huff->huffman_table[table_id].dc_values[table_ind]; 779 table_entries += huff->huffman_table[table_id].num_ac_codes[bit_ind]; 788 uint32_t num_codes = huff->huffman_table[table_id].num_ac_codes[bit_ind]; 813 ctx->symbol_codes[1][table_id][table_ind].symbol = huff->huffman_table[table_id].ac_values[table_ind];; [all...] |