Home
last modified time | relevance | path

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

/third_party/node/deps/v8/src/base/
Dvlq.h18 static constexpr uint32_t kDataMask = kContinueBit - 1; variable
30 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()
Dvlq-base64.cc30 constexpr uint32_t kDataMask = kContinueMask - 1; variable
51 res += (digit & kDataMask) << shift; in VLQBase64Decode()