diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2021-04-21 07:58:32 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 07:58:32 +0000 |
commit | 5aef11026a850bb99d8394dba17810bf05d727bc (patch) | |
tree | 43fbdf4e912923c744cfc81865f051c6783c373e /vendor/github.com/golang/snappy/encode_asm.go | |
parent | 9ef298e78438b2b8654bf87db157b4090b5e0523 (diff) | |
download | podman-5aef11026a850bb99d8394dba17810bf05d727bc.tar.gz podman-5aef11026a850bb99d8394dba17810bf05d727bc.tar.bz2 podman-5aef11026a850bb99d8394dba17810bf05d727bc.zip |
Bump github.com/containers/storage from 1.29.0 to 1.30.0
Bumps [github.com/containers/storage](https://github.com/containers/storage) from 1.29.0 to 1.30.0.
- [Release notes](https://github.com/containers/storage/releases)
- [Changelog](https://github.com/containers/storage/blob/master/docs/containers-storage-changes.md)
- [Commits](https://github.com/containers/storage/compare/v1.29.0...v1.30.0)
Signed-off-by: dependabot[bot] <support@github.com>
Diffstat (limited to 'vendor/github.com/golang/snappy/encode_asm.go')
-rw-r--r-- | vendor/github.com/golang/snappy/encode_asm.go | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/vendor/github.com/golang/snappy/encode_asm.go b/vendor/github.com/golang/snappy/encode_asm.go new file mode 100644 index 000000000..107c1e714 --- /dev/null +++ b/vendor/github.com/golang/snappy/encode_asm.go @@ -0,0 +1,30 @@ +// Copyright 2016 The Snappy-Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !appengine +// +build gc +// +build !noasm +// +build amd64 arm64 + +package snappy + +// emitLiteral has the same semantics as in encode_other.go. +// +//go:noescape +func emitLiteral(dst, lit []byte) int + +// emitCopy has the same semantics as in encode_other.go. +// +//go:noescape +func emitCopy(dst []byte, offset, length int) int + +// extendMatch has the same semantics as in encode_other.go. +// +//go:noescape +func extendMatch(src []byte, i, j int) int + +// encodeBlock has the same semantics as in encode_other.go. +// +//go:noescape +func encodeBlock(dst, src []byte) (d int) |