Lines Matching defs:bits
2878 uint32_t bits = ((is_negative ? -value : value) << 1) |
2883 uint32_t next = bits >> 7;
2884 contents_.Add(((bits << 1) & 0xFF) | (next != 0), zone);
2885 bits = next;
2886 } while (bits != 0);
2893 uint32_t bits = 0;
2897 bits |= (next >> 1) << i;
2900 // The bits encode the sign in the least significant bit.
2901 bool is_negative = (bits & 1) == 1;
2902 int32_t result = bits >> 1;