HomeSort by relevance Sort by last modified time
    Searched defs:highest_bit (Results 1 - 3 of 3) sorted by null

  /external/webp/src/dsp/
lossless_common.h 101 const int highest_bit = BitsLog2Floor(--distance); local
102 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1;
103 *extra_bits = highest_bit - 1;
104 *code = 2 * highest_bit + second_highest_bit;
110 const int highest_bit = BitsLog2Floor(--distance); local
111 const int second_highest_bit = (distance >> (highest_bit - 1)) & 1;
112 *extra_bits = highest_bit - 1;
114 *code = 2 * highest_bit + second_highest_bit;
  /art/libartbase/base/
bit_vector.cc 140 int highest_bit = src->GetHighestBitSet(); local
144 if (highest_bit == -1) {
149 uint32_t src_size = BitsToWords(highest_bit + 1);
155 EnsureSize(highest_bit);
158 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits);
174 int highest_bit = union_with->GetHighestBitSet(); local
178 if (highest_bit == -1) {
183 uint32_t union_with_size = BitsToWords(highest_bit + 1);
187 EnsureSize(highest_bit);
190 DCHECK_LT(static_cast<uint32_t> (highest_bit), storage_size_ * kWordBits)
292 int highest_bit = src->GetHighestBitSet(); local
    [all...]
  /external/toybox/lib/
lib.c 551 int highest_bit(unsigned long l) function

Completed in 750 milliseconds