Home
last modified time | relevance | path

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

/external/nanopb-c/generator/google/protobuf/internal/
Ddecoder.py101 def _VarintDecoder(mask): function
152 _DecodeVarint = _VarintDecoder((1 << 64) - 1)
156 _DecodeVarint32 = _VarintDecoder((1 << 32) - 1)
/external/protobuf/python/google/protobuf/internal/
Ddecoder.py107 def _VarintDecoder(mask, result_type): function
167 _DecodeVarint = _VarintDecoder((1 << 64) - 1, long)
171 _DecodeVarint32 = _VarintDecoder((1 << 32) - 1, int)