Lines Matching defs:bits
7 #include "src/base/bits.h"
240 int32_t bits = value & 0x1F;
241 lower_ = lower_ >> bits;
242 upper_ = upper_ >> bits;
248 int32_t bits = value & 0x1F;
251 lower_ = lower_ << bits;
252 upper_ = upper_ << bits;
253 if (old_lower != lower_ >> bits || old_upper != upper_ >> bits) {
2243 bits; lower is safe anyway.
3044 // The maximum value has the high bit, and all bits below, set:
3047 // the high bit, and all bits below, unset:
4191 return H_CONSTANT_INT(base::bits::CountLeadingZeros32(i));