Lines Matching defs:bits
2913 uint32_t bits = ((is_negative ? -value : value) << 1) |
2918 uint32_t next = bits >> 7;
2919 contents_.Add(((bits << 1) & 0xFF) | (next != 0), zone);
2920 bits = next;
2921 } while (bits != 0);
2928 uint32_t bits = 0;
2932 bits |= (next >> 1) << i;
2935 // The bits encode the sign in the least significant bit.
2936 bool is_negative = (bits & 1) == 1;
2937 int32_t result = bits >> 1;