Searched defs:highest_bit (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/libwebp/dsp/
H A Dlossless.h186 const int highest_bit = BitsLog2Floor(--distance); local
187 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1;
188 *extra_bits = highest_bit - 1;
189 *code = 2 * highest_bit + second_highest_bit;
195 const int highest_bit = BitsLog2Floor(--distance); local
196 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1;
197 *extra_bits = highest_bit - 1;
199 *code = 2 * highest_bit + second_highest_bit;
/external/webp/src/dsp/
H A Dlossless.h186 const int highest_bit = BitsLog2Floor(--distance); local
187 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1;
188 *extra_bits = highest_bit - 1;
189 *code = 2 * highest_bit + second_highest_bit;
195 const int highest_bit = BitsLog2Floor(--distance); local
196 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1;
197 *extra_bits = highest_bit - 1;
199 *code = 2 * highest_bit + second_highest_bit;

Completed in 233 milliseconds