diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-06-17 20:16:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-17 20:16:44 +0200 |
commit | 6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920 (patch) | |
tree | b0e7ad7e27d8608f061226497fbdced2102ce054 /vendor/github.com/klauspost/compress/fse/bytereader.go | |
parent | f293606480669acea375c53de1e2c81044313c05 (diff) | |
parent | ac4f4b14829b66f6aa24b75128bd68e3a5fb53b9 (diff) | |
download | podman-6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920.tar.gz podman-6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920.tar.bz2 podman-6645e0d6f376b0dbd2bf82b3c708ceb20a6ad920.zip |
Merge pull request #6648 from vrothberg/vendor-image
vendor github.com/containers/image/v5@v5.5.1
Diffstat (limited to 'vendor/github.com/klauspost/compress/fse/bytereader.go')
-rw-r--r-- | vendor/github.com/klauspost/compress/fse/bytereader.go | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/vendor/github.com/klauspost/compress/fse/bytereader.go b/vendor/github.com/klauspost/compress/fse/bytereader.go index f228a46cd..abade2d60 100644 --- a/vendor/github.com/klauspost/compress/fse/bytereader.go +++ b/vendor/github.com/klauspost/compress/fse/bytereader.go @@ -25,19 +25,10 @@ func (b *byteReader) advance(n uint) { b.off += int(n) } -// Int32 returns a little endian int32 starting at current offset. -func (b byteReader) Int32() int32 { - b2 := b.b[b.off : b.off+4 : b.off+4] - v3 := int32(b2[3]) - v2 := int32(b2[2]) - v1 := int32(b2[1]) - v0 := int32(b2[0]) - return v0 | (v1 << 8) | (v2 << 16) | (v3 << 24) -} - // Uint32 returns a little endian uint32 starting at current offset. func (b byteReader) Uint32() uint32 { - b2 := b.b[b.off : b.off+4 : b.off+4] + b2 := b.b[b.off:] + b2 = b2[:4] v3 := uint32(b2[3]) v2 := uint32(b2[2]) v1 := uint32(b2[1]) |