Searched refs:DecodeVarint (Results 1 – 10 of 10) 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 | 603 x, err := b.DecodeVarint() 647 x, err = b.DecodeVarint()
|
D | all_test.go | 217 x, e := o.DecodeVarint()
|
/external/syzkaller/vendor/github.com/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 244 x, err = p.DecodeVarint() 256 x, err = p.DecodeVarint() 268 n, err := p.DecodeVarint()
|
D | lib.go | 486 op, err := p.DecodeVarint() 540 u, err = p.DecodeVarint()
|
D | message_set.go | 214 _, n := DecodeVarint(o) // calculate length of length varint
|
D | text.go | 603 x, err := b.DecodeVarint() 647 x, err = b.DecodeVarint()
|
/external/protobuf/python/google/protobuf/internal/ |
D | decoder.py | 117 def DecodeVarint(buffer, pos): function 131 return DecodeVarint 137 def DecodeVarint(buffer, pos): function 155 return DecodeVarint
|