func google.golang.org/protobuf/encoding/protowire.DecodeZigZag
21 uses
google.golang.org/protobuf/encoding/protowire (current package)
wire.go#L522: func DecodeZigZag(x uint64) int64 {
google.golang.org/protobuf/internal/impl
codec_gen.go#L1026: *p.Int32() = int32(protowire.DecodeZigZag(v & math.MaxUint32))
codec_gen.go#L1106: **vp = int32(protowire.DecodeZigZag(v & math.MaxUint32))
codec_gen.go#L1161: s = append(s, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
codec_gen.go#L1185: *sp = append(*sp, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
codec_gen.go#L1267: return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), out, nil
codec_gen.go#L1321: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
codec_gen.go#L1344: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
codec_gen.go#L2244: *p.Int64() = protowire.DecodeZigZag(v)
codec_gen.go#L2324: **vp = protowire.DecodeZigZag(v)
codec_gen.go#L2379: s = append(s, protowire.DecodeZigZag(v))
codec_gen.go#L2403: *sp = append(*sp, protowire.DecodeZigZag(v))
codec_gen.go#L2485: return protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)), out, nil
codec_gen.go#L2539: list.Append(protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)))
codec_gen.go#L2562: list.Append(protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)))
google.golang.org/protobuf/proto
decode_gen.go#L59: return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), n, nil
decode_gen.go#L86: return protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)), n, nil
decode_gen.go#L283: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
decode_gen.go#L294: list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
decode_gen.go#L358: list.Append(protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)))
decode_gen.go#L369: list.Append(protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)))