aboutsummaryrefslogtreecommitdiff
path: root/vendor/github.com/golang/snappy/encode_asm.go
diff options
context:
space:
mode:
authorPaul Holzinger <pholzing@redhat.com>2021-09-13 18:48:48 +0200
committerPaul Holzinger <pholzing@redhat.com>2021-09-13 18:49:38 +0200
commitb0cbcd1d0943a0b34d54c58c475c8239a32e0a59 (patch)
treef503a136b7ce4684a4adc1f4ec8c4d162259281b /vendor/github.com/golang/snappy/encode_asm.go
parent0f3d3bd21da0b67542c44c832f0e1642c5f639cf (diff)
downloadpodman-b0cbcd1d0943a0b34d54c58c475c8239a32e0a59.tar.gz
podman-b0cbcd1d0943a0b34d54c58c475c8239a32e0a59.tar.bz2
podman-b0cbcd1d0943a0b34d54c58c475c8239a32e0a59.zip
bump c/common to v0.44.0
Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Diffstat (limited to 'vendor/github.com/golang/snappy/encode_asm.go')
-rw-r--r--vendor/github.com/golang/snappy/encode_asm.go30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/github.com/golang/snappy/encode_asm.go b/vendor/github.com/golang/snappy/encode_asm.go
deleted file mode 100644
index 107c1e714..000000000
--- a/vendor/github.com/golang/snappy/encode_asm.go
+++ /dev/null
@@ -1,30 +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
-// +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)