Searched refs:extra_bits_count (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/3rdparty/libwebp/enc/ |
D | backward_references.h | 85 int* const extra_bits_count, in PrefixEncode() argument 90 *extra_bits_count = highest_bit - 1; in PrefixEncode() 91 *extra_bits_value = distance & ((1 << *extra_bits_count) - 1); in PrefixEncode() 94 *extra_bits_count = 0; in PrefixEncode()
|
D | backward_references.c | 462 int code, extra_bits_count, extra_bits_value; in GetLengthCost() local 463 PrefixEncode(length, &code, &extra_bits_count, &extra_bits_value); in GetLengthCost() 464 return m->literal_[VALUES_IN_BYTE + code] + extra_bits_count; in GetLengthCost() 469 int code, extra_bits_count, extra_bits_value; in GetDistanceCost() local 470 PrefixEncode(distance, &code, &extra_bits_count, &extra_bits_value); in GetDistanceCost() 471 return m->distance_[code] + extra_bits_count; in GetDistanceCost()
|
D | histogram.c | 93 int code, extra_bits_count, extra_bits_value; in VP8LHistogramAddSinglePixOrCopy() local 95 &code, &extra_bits_count, &extra_bits_value); in VP8LHistogramAddSinglePixOrCopy() 98 &code, &extra_bits_count, &extra_bits_value); in VP8LHistogramAddSinglePixOrCopy()
|