Searched refs:bits_to_encode (Results 1 – 5 of 5) sorted by relevance
148 uint64_t bits_to_encode = static_cast<uint64_t>(data ^ (data >> 63)); in SignedLeb128Size() local149 uint32_t num_bits = 1 /* we need to encode the sign bit */ + 6 + 64 - CLZ(bits_to_encode | 1U); in SignedLeb128Size()