Searched refs:DecodeVarint (Results 1 – 6 of 6) sorted by relevance
/external/golang-protobuf/proto/ |
D | decode.go | 57 func DecodeVarint(buf []byte) (x uint64, n int) { func 101 func (p *Buffer) DecodeVarint() (x uint64, err error) { func 243 x, err = p.DecodeVarint() 255 x, err = p.DecodeVarint() 267 n, err := p.DecodeVarint()
|
D | message_set.go | 171 _, n := DecodeVarint(o) // calculate length of length varint
|
D | lib.go | 524 op, err := p.DecodeVarint() 578 u, err = p.DecodeVarint()
|
D | text.go | 605 x, err := b.DecodeVarint() 649 x, err = b.DecodeVarint()
|
D | all_test.go | 219 x, e := o.DecodeVarint()
|
/external/protobuf/python/google/protobuf/internal/ |
D | decoder.py | 122 def DecodeVarint(buffer, pos): function 136 return DecodeVarint 145 def DecodeVarint(buffer, pos): function 160 return DecodeVarint
|