Lines Matching defs:bits
15 #include "src/base/bits.h"
38 DCHECK(base::bits::IsPowerOfTwo32(x));
39 int bits = 0;
44 bits += 16;
48 bits += 8;
52 bits += 4;
57 case 8: bits++; // Fall through.
58 case 4: bits++; // Fall through.
59 case 2: bits++; // Fall through.
62 DCHECK_EQ(1 << bits, original_x);
63 return bits;
199 // A type U mask of bit field. To use all bits of a type U of x bits
208 // Value for the field with all bits set.
849 explicit EnumSet(T bits = 0) : bits_(bits) {}