Searched refs:kDataMask (Results 1 – 2 of 2) sorted by relevance
18 static constexpr uint32_t kDataMask = kContinueBit - 1; variable30 if (value <= kDataMask) { in VLQEncodeUnsigned()39 } while (value > kDataMask); in VLQEncodeUnsigned()89 if (cur_byte <= kDataMask) { in VLQDecodeUnsigned()92 uint32_t bits = cur_byte & kDataMask; in VLQDecodeUnsigned()95 bits |= (cur_byte & kDataMask) << shift; in VLQDecodeUnsigned()96 if (cur_byte <= kDataMask) break; in VLQDecodeUnsigned()
30 constexpr uint32_t kDataMask = kContinueMask - 1; variable51 res += (digit & kDataMask) << shift; in VLQBase64Decode()