diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-04-21 15:41:46 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-21 15:41:46 -0400 |
commit | 5c8ba488078c7ee71e5b3a2cbb2bf770734d6c81 (patch) | |
tree | 7b6ec387c3006e83c4e3168412e9e70e5565ff45 /vendor/github.com/klauspost/compress/snappy/encode_amd64.go | |
parent | 897f6c3a4a55bfc82a989c81cb3dc8998965c408 (diff) | |
parent | 5aef11026a850bb99d8394dba17810bf05d727bc (diff) | |
download | podman-5c8ba488078c7ee71e5b3a2cbb2bf770734d6c81.tar.gz podman-5c8ba488078c7ee71e5b3a2cbb2bf770734d6c81.tar.bz2 podman-5c8ba488078c7ee71e5b3a2cbb2bf770734d6c81.zip |
Merge pull request #10097 from containers/dependabot/go_modules/github.com/containers/storage-1.30.0
Bump github.com/containers/storage from 1.29.0 to 1.30.0
Diffstat (limited to 'vendor/github.com/klauspost/compress/snappy/encode_amd64.go')
-rw-r--r-- | vendor/github.com/klauspost/compress/snappy/encode_amd64.go | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/vendor/github.com/klauspost/compress/snappy/encode_amd64.go b/vendor/github.com/klauspost/compress/snappy/encode_amd64.go deleted file mode 100644 index 150d91bc8..000000000 --- a/vendor/github.com/klauspost/compress/snappy/encode_amd64.go +++ /dev/null @@ -1,29 +0,0 @@ -// 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 - -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) |