HomeSort by relevance Sort by last modified time
    Searched refs:highest_bit (Results 1 - 6 of 6) 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/toys/other/
chrt.c 5 * Note: -ibrfo flags sorted to match SCHED positions for highest_bit()
76 if (-1==(pol = highest_bit(toys.optflags&0x2f))) pol = SCHED_RR;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Scripts/Ds5/
firmware_volume.py 211 highest_bit = 0x80;
212 while (highest_bit != 0) and ((highest_bit & state) == 0):
213 highest_bit >>= 1
215 return highest_bit
  /external/toybox/lib/
lib.h 197 int highest_bit(unsigned long l);
lib.c 551 int highest_bit(unsigned long l) function

Completed in 215 milliseconds