func google.golang.org/protobuf/encoding/protowire.DecodeZigZag

21 uses

	google.golang.org/protobuf/encoding/protowire (current package)
		wire.go#L518: func DecodeZigZag(x uint64) int64 {

	google.golang.org/protobuf/internal/impl
		codec_gen.go#L1044: 	*p.Int32() = int32(protowire.DecodeZigZag(v & math.MaxUint32))
		codec_gen.go#L1124: 	**vp = int32(protowire.DecodeZigZag(v & math.MaxUint32))
		codec_gen.go#L1188: 			s = append(s, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
		codec_gen.go#L1212: 	*sp = append(*sp, int32(protowire.DecodeZigZag(v&math.MaxUint32)))
		codec_gen.go#L1294: 	return protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))), out, nil
		codec_gen.go#L1348: 			list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
		codec_gen.go#L1371: 	list.Append(protoreflect.ValueOfInt32(int32(protowire.DecodeZigZag(v & math.MaxUint32))))
		codec_gen.go#L2289: 	*p.Int64() = protowire.DecodeZigZag(v)
		codec_gen.go#L2369: 	**vp = protowire.DecodeZigZag(v)
		codec_gen.go#L2433: 			s = append(s, protowire.DecodeZigZag(v))
		codec_gen.go#L2457: 	*sp = append(*sp, protowire.DecodeZigZag(v))
		codec_gen.go#L2539: 	return protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)), out, nil
		codec_gen.go#L2593: 			list.Append(protoreflect.ValueOfInt64(protowire.DecodeZigZag(v)))
		codec_gen.go#L2616: 	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)))