Home
last modified time | relevance | path

Searched refs:term_shift (Results 1 – 1 of 1) sorted by relevance

/external/pigweed/pw_varint/
Dvarint.cc41 int term_shift = value_shift == 1 ? 0 : 7; in pw_varint_EncodeCustom() local
45 cont = std::byte(0x01) << term_shift; in pw_varint_EncodeCustom()
46 term = std::byte(0x00) << term_shift; in pw_varint_EncodeCustom()
48 cont = std::byte(0x00) << term_shift; in pw_varint_EncodeCustom()
49 term = std::byte(0x01) << term_shift; in pw_varint_EncodeCustom()