Home
last modified time | relevance | path

Searched refs:hcode (Results 1 – 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/brotli/c/enc/
Dcommand.h156 uint32_t hcode = (dcode - dist->num_direct_distance_codes - in CommandRestoreDistanceCode() local
161 uint32_t offset = ((2U + (hcode & 1U)) << nbits) - 4U; in CommandRestoreDistanceCode()
/third_party/node/deps/brotli/c/enc/
Dcommand.h156 uint32_t hcode = (dcode - dist->num_direct_distance_codes - in CommandRestoreDistanceCode() local
161 uint32_t offset = ((2U + (hcode & 1U)) << nbits) - 4U; in CommandRestoreDistanceCode()
/third_party/flutter/skia/third_party/externals/libwebp/src/dec/
Dvp8l_dec.c219 static int AccumulateHCode(HuffmanCode hcode, int shift, in AccumulateHCode() argument
221 huff->bits += hcode.bits; in AccumulateHCode()
222 huff->value |= (uint32_t)hcode.value << shift; in AccumulateHCode()
224 return hcode.bits; in AccumulateHCode()
232 HuffmanCode hcode = htree_group->htrees[GREEN][bits]; in BuildPackedTable() local
233 if (hcode.value >= NUM_LITERAL_CODES) { in BuildPackedTable()
234 huff->bits = hcode.bits + BITS_SPECIAL_MARKER; in BuildPackedTable()
235 huff->value = hcode.value; in BuildPackedTable()
239 bits >>= AccumulateHCode(hcode, 8, huff); in BuildPackedTable()
/third_party/skia/third_party/externals/libwebp/src/dec/
Dvp8l_dec.c219 static int AccumulateHCode(HuffmanCode hcode, int shift, in AccumulateHCode() argument
221 huff->bits += hcode.bits; in AccumulateHCode()
222 huff->value |= (uint32_t)hcode.value << shift; in AccumulateHCode()
224 return hcode.bits; in AccumulateHCode()
232 HuffmanCode hcode = htree_group->htrees[GREEN][bits]; in BuildPackedTable() local
233 if (hcode.value >= NUM_LITERAL_CODES) { in BuildPackedTable()
234 huff->bits = hcode.bits + BITS_SPECIAL_MARKER; in BuildPackedTable()
235 huff->value = hcode.value; in BuildPackedTable()
239 bits >>= AccumulateHCode(hcode, 8, huff); in BuildPackedTable()
/third_party/skia/third_party/externals/brotli/research/
Dbrotlidump.py1161 hcode = (dcode - self.NDIRECT - 16) >> self.NPOSTFIX
1163 offset = ((2 + (hcode & 1)) << ndistbits) - 4
1180 hcode = index >> self.NPOSTFIX
1185 hcode&1,
1186 'x'*(2+hcode>>1) if hcode<13 or verbose else '[{}*x]'.format(2+hcode>>1),