Home
last modified time | relevance | path

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

/external/webp/src/dsp/
Dlossless.h182 const int highest_bit = BitsLog2Floor(--distance); in VP8LPrefixEncodeBitsNoLUT() local
183 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1; in VP8LPrefixEncodeBitsNoLUT()
184 *extra_bits = highest_bit - 1; in VP8LPrefixEncodeBitsNoLUT()
185 *code = 2 * highest_bit + second_highest_bit; in VP8LPrefixEncodeBitsNoLUT()
191 const int highest_bit = BitsLog2Floor(--distance); in VP8LPrefixEncodeNoLUT() local
192 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1; in VP8LPrefixEncodeNoLUT()
193 *extra_bits = highest_bit - 1; in VP8LPrefixEncodeNoLUT()
195 *code = 2 * highest_bit + second_highest_bit; in VP8LPrefixEncodeNoLUT()