Add kafka and postgres clients to vendor directory
This commit is contained in:
parent
2f965c6b33
commit
a78e0cba8e
876 changed files with 73718 additions and 0 deletions
28
vendor/src/github.com/pierrec/lz4/LICENSE
vendored
Normal file
28
vendor/src/github.com/pierrec/lz4/LICENSE
vendored
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
Copyright (c) 2015, Pierre Curto
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
* Redistributions of source code must retain the above copyright notice, this
|
||||
list of conditions and the following disclaimer.
|
||||
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
* Neither the name of xxHash nor the names of its
|
||||
contributors may be used to endorse or promote products derived from
|
||||
this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
||||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
||||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
||||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
||||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
31
vendor/src/github.com/pierrec/lz4/README.md
vendored
Normal file
31
vendor/src/github.com/pierrec/lz4/README.md
vendored
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
[](https://godoc.org/github.com/pierrec/lz4)
|
||||
[](https://travis-ci.org/pierrec/lz4)
|
||||
|
||||
# lz4
|
||||
LZ4 compression and decompression in pure Go
|
||||
|
||||
## Usage
|
||||
|
||||
```go
|
||||
import "github.com/pierrec/lz4"
|
||||
```
|
||||
|
||||
## Description
|
||||
|
||||
Package lz4 implements reading and writing lz4 compressed data (a frame),
|
||||
as specified in http://fastcompression.blogspot.fr/2013/04/lz4-streaming-format-final.html,
|
||||
using an io.Reader (decompression) and io.Writer (compression).
|
||||
It is designed to minimize memory usage while maximizing throughput by being able to
|
||||
[de]compress data concurrently.
|
||||
|
||||
The Reader and the Writer support concurrent processing provided the supplied buffers are
|
||||
large enough (in multiples of BlockMaxSize) and there is no block dependency.
|
||||
Reader.WriteTo and Writer.ReadFrom do leverage the concurrency transparently.
|
||||
The runtime.GOMAXPROCS() value is used to apply concurrency or not.
|
||||
|
||||
Although the block level compression and decompression functions are exposed and are fully compatible
|
||||
with the lz4 block format definition, they are low level and should not be used directly.
|
||||
For a complete description of an lz4 compressed block, see:
|
||||
http://fastcompression.blogspot.fr/2011/05/lz4-explained.html
|
||||
|
||||
See https://github.com/Cyan4973/lz4 for the reference C implementation.
|
||||
474
vendor/src/github.com/pierrec/lz4/block.go
vendored
Normal file
474
vendor/src/github.com/pierrec/lz4/block.go
vendored
Normal file
|
|
@ -0,0 +1,474 @@
|
|||
package lz4
|
||||
|
||||
import (
|
||||
"encoding/binary"
|
||||
"errors"
|
||||
"unsafe"
|
||||
)
|
||||
|
||||
// block represents a frame data block.
|
||||
// Used when compressing or decompressing frame blocks concurrently.
|
||||
type block struct {
|
||||
compressed bool
|
||||
zdata []byte // compressed data
|
||||
data []byte // decompressed data
|
||||
offset int // offset within the data as with block dependency the 64Kb window is prepended to it
|
||||
checksum uint32 // compressed data checksum
|
||||
err error // error while [de]compressing
|
||||
}
|
||||
|
||||
var (
|
||||
// ErrInvalidSource is returned by UncompressBlock when a compressed block is corrupted.
|
||||
ErrInvalidSource = errors.New("lz4: invalid source")
|
||||
// ErrShortBuffer is returned by UncompressBlock, CompressBlock or CompressBlockHC when
|
||||
// the supplied buffer for [de]compression is too small.
|
||||
ErrShortBuffer = errors.New("lz4: short buffer")
|
||||
)
|
||||
|
||||
// CompressBlockBound returns the maximum size of a given buffer of size n, when not compressible.
|
||||
func CompressBlockBound(n int) int {
|
||||
return n + n/255 + 16
|
||||
}
|
||||
|
||||
// UncompressBlock decompresses the source buffer into the destination one,
|
||||
// starting at the di index and returning the decompressed size.
|
||||
//
|
||||
// The destination buffer must be sized appropriately.
|
||||
//
|
||||
// An error is returned if the source data is invalid or the destination buffer is too small.
|
||||
func UncompressBlock(src, dst []byte, di int) (int, error) {
|
||||
si, sn, di0 := 0, len(src), di
|
||||
if sn == 0 {
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
for {
|
||||
// literals and match lengths (token)
|
||||
lLen := int(src[si] >> 4)
|
||||
mLen := int(src[si] & 0xF)
|
||||
if si++; si == sn {
|
||||
return di, ErrInvalidSource
|
||||
}
|
||||
|
||||
// literals
|
||||
if lLen > 0 {
|
||||
if lLen == 0xF {
|
||||
for src[si] == 0xFF {
|
||||
lLen += 0xFF
|
||||
if si++; si == sn {
|
||||
return di - di0, ErrInvalidSource
|
||||
}
|
||||
}
|
||||
lLen += int(src[si])
|
||||
if si++; si == sn {
|
||||
return di - di0, ErrInvalidSource
|
||||
}
|
||||
}
|
||||
if len(dst)-di < lLen || si+lLen > sn {
|
||||
return di - di0, ErrShortBuffer
|
||||
}
|
||||
di += copy(dst[di:], src[si:si+lLen])
|
||||
|
||||
if si += lLen; si >= sn {
|
||||
return di - di0, nil
|
||||
}
|
||||
}
|
||||
|
||||
if si += 2; si >= sn {
|
||||
return di, ErrInvalidSource
|
||||
}
|
||||
offset := int(src[si-2]) | int(src[si-1])<<8
|
||||
if di-offset < 0 || offset == 0 {
|
||||
return di - di0, ErrInvalidSource
|
||||
}
|
||||
|
||||
// match
|
||||
if mLen == 0xF {
|
||||
for src[si] == 0xFF {
|
||||
mLen += 0xFF
|
||||
if si++; si == sn {
|
||||
return di - di0, ErrInvalidSource
|
||||
}
|
||||
}
|
||||
mLen += int(src[si])
|
||||
if si++; si == sn {
|
||||
return di - di0, ErrInvalidSource
|
||||
}
|
||||
}
|
||||
// minimum match length is 4
|
||||
mLen += 4
|
||||
if len(dst)-di <= mLen {
|
||||
return di - di0, ErrShortBuffer
|
||||
}
|
||||
|
||||
// copy the match (NB. match is at least 4 bytes long)
|
||||
// NB. past di, copy() would write old bytes instead of
|
||||
// the ones we just copied, so split the work into the largest chunk.
|
||||
for ; mLen >= offset; mLen -= offset {
|
||||
di += copy(dst[di:], dst[di-offset:di])
|
||||
}
|
||||
di += copy(dst[di:], dst[di-offset:di-offset+mLen])
|
||||
}
|
||||
}
|
||||
|
||||
type hashEntry struct {
|
||||
generation uint
|
||||
value int
|
||||
}
|
||||
|
||||
// CompressBlock compresses the source buffer starting at soffet into the destination one.
|
||||
// This is the fast version of LZ4 compression and also the default one.
|
||||
//
|
||||
// The size of the compressed data is returned. If it is 0 and no error, then the data is incompressible.
|
||||
//
|
||||
// An error is returned if the destination buffer is too small.
|
||||
func CompressBlock(src, dst []byte, soffset int) (int, error) {
|
||||
var hashTable [hashTableSize]hashEntry
|
||||
return compressGenerationalBlock(src, dst, soffset, 0, hashTable[:])
|
||||
}
|
||||
|
||||
// getUint32 is a despicably evil function (well, for Go!) that takes advantage
|
||||
// of the machine's byte order to save some operations. This may look
|
||||
// inefficient but it is significantly faster on littleEndian machines,
|
||||
// which include x84, amd64, and some ARM processors.
|
||||
func getUint32(b []byte) uint32 {
|
||||
_ = b[3]
|
||||
if isLittleEndian {
|
||||
return *(*uint32)(unsafe.Pointer(&b))
|
||||
}
|
||||
|
||||
return uint32(b[0]) |
|
||||
uint32(b[1])<<8 |
|
||||
uint32(b[2])<<16 |
|
||||
uint32(b[3])<<24
|
||||
}
|
||||
|
||||
func compressGenerationalBlock(src, dst []byte, soffset int, generation uint, hashTable []hashEntry) (int, error) {
|
||||
sn, dn := len(src)-mfLimit, len(dst)
|
||||
if sn <= 0 || dn == 0 || soffset >= sn {
|
||||
return 0, nil
|
||||
}
|
||||
var si, di int
|
||||
|
||||
// fast scan strategy:
|
||||
// we only need a hash table to store the last sequences (4 bytes)
|
||||
var hashShift = uint((minMatch * 8) - hashLog)
|
||||
|
||||
// Initialise the hash table with the first 64Kb of the input buffer
|
||||
// (used when compressing dependent blocks)
|
||||
for si < soffset {
|
||||
h := getUint32(src[si:]) * hasher >> hashShift
|
||||
si++
|
||||
hashTable[h] = hashEntry{generation, si}
|
||||
}
|
||||
|
||||
anchor := si
|
||||
fma := 1 << skipStrength
|
||||
for si < sn-minMatch {
|
||||
// hash the next 4 bytes (sequence)...
|
||||
h := getUint32(src[si:]) * hasher >> hashShift
|
||||
if hashTable[h].generation != generation {
|
||||
hashTable[h] = hashEntry{generation, 0}
|
||||
}
|
||||
// -1 to separate existing entries from new ones
|
||||
ref := hashTable[h].value - 1
|
||||
// ...and store the position of the hash in the hash table (+1 to compensate the -1 upon saving)
|
||||
hashTable[h].value = si + 1
|
||||
// no need to check the last 3 bytes in the first literal 4 bytes as
|
||||
// this guarantees that the next match, if any, is compressed with
|
||||
// a lower size, since to have some compression we must have:
|
||||
// ll+ml-overlap > 1 + (ll-15)/255 + (ml-4-15)/255 + 2 (uncompressed size>compressed size)
|
||||
// => ll+ml>3+2*overlap => ll+ml>= 4+2*overlap
|
||||
// and by definition we do have:
|
||||
// ll >= 1, ml >= 4
|
||||
// => ll+ml >= 5
|
||||
// => so overlap must be 0
|
||||
|
||||
// the sequence is new, out of bound (64kb) or not valid: try next sequence
|
||||
if ref < 0 || fma&(1<<skipStrength-1) < 4 ||
|
||||
(si-ref)>>winSizeLog > 0 ||
|
||||
src[ref] != src[si] ||
|
||||
src[ref+1] != src[si+1] ||
|
||||
src[ref+2] != src[si+2] ||
|
||||
src[ref+3] != src[si+3] {
|
||||
// variable step: improves performance on non-compressible data
|
||||
si += fma >> skipStrength
|
||||
fma++
|
||||
continue
|
||||
}
|
||||
// match found
|
||||
fma = 1 << skipStrength
|
||||
lLen := si - anchor
|
||||
offset := si - ref
|
||||
|
||||
// encode match length part 1
|
||||
si += minMatch
|
||||
mLen := si // match length has minMatch already
|
||||
for si <= sn && src[si] == src[si-offset] {
|
||||
si++
|
||||
}
|
||||
mLen = si - mLen
|
||||
if mLen < 0xF {
|
||||
dst[di] = byte(mLen)
|
||||
} else {
|
||||
dst[di] = 0xF
|
||||
}
|
||||
|
||||
// encode literals length
|
||||
if lLen < 0xF {
|
||||
dst[di] |= byte(lLen << 4)
|
||||
} else {
|
||||
dst[di] |= 0xF0
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
l := lLen - 0xF
|
||||
for ; l >= 0xFF; l -= 0xFF {
|
||||
dst[di] = 0xFF
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
dst[di] = byte(l)
|
||||
}
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
|
||||
// literals
|
||||
if di+lLen >= dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
di += copy(dst[di:], src[anchor:anchor+lLen])
|
||||
anchor = si
|
||||
|
||||
// encode offset
|
||||
if di += 2; di >= dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
dst[di-2], dst[di-1] = byte(offset), byte(offset>>8)
|
||||
|
||||
// encode match length part 2
|
||||
if mLen >= 0xF {
|
||||
for mLen -= 0xF; mLen >= 0xFF; mLen -= 0xFF {
|
||||
dst[di] = 0xFF
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
dst[di] = byte(mLen)
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if anchor == 0 {
|
||||
// incompressible
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
// last literals
|
||||
lLen := len(src) - anchor
|
||||
if lLen < 0xF {
|
||||
dst[di] = byte(lLen << 4)
|
||||
} else {
|
||||
dst[di] = 0xF0
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
lLen -= 0xF
|
||||
for ; lLen >= 0xFF; lLen -= 0xFF {
|
||||
dst[di] = 0xFF
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
dst[di] = byte(lLen)
|
||||
}
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
|
||||
// write literals
|
||||
src = src[anchor:]
|
||||
switch n := di + len(src); {
|
||||
case n > dn:
|
||||
return di, ErrShortBuffer
|
||||
case n >= sn:
|
||||
// incompressible
|
||||
return 0, nil
|
||||
}
|
||||
di += copy(dst[di:], src)
|
||||
return di, nil
|
||||
}
|
||||
|
||||
// CompressBlockHC compresses the source buffer starting at soffet into the destination one.
|
||||
// CompressBlockHC compression ratio is better than CompressBlock but it is also slower.
|
||||
//
|
||||
// The size of the compressed data is returned. If it is 0 and no error, then the data is not compressible.
|
||||
//
|
||||
// An error is returned if the destination buffer is too small.
|
||||
func CompressBlockHC(src, dst []byte, soffset int) (int, error) {
|
||||
sn, dn := len(src)-mfLimit, len(dst)
|
||||
if sn <= 0 || dn == 0 || soffset >= sn {
|
||||
return 0, nil
|
||||
}
|
||||
var si, di int
|
||||
|
||||
// Hash Chain strategy:
|
||||
// we need a hash table and a chain table
|
||||
// the chain table cannot contain more entries than the window size (64Kb entries)
|
||||
var hashTable [1 << hashLog]int
|
||||
var chainTable [winSize]int
|
||||
var hashShift = uint((minMatch * 8) - hashLog)
|
||||
|
||||
// Initialise the hash table with the first 64Kb of the input buffer
|
||||
// (used when compressing dependent blocks)
|
||||
for si < soffset {
|
||||
h := binary.LittleEndian.Uint32(src[si:]) * hasher >> hashShift
|
||||
chainTable[si&winMask] = hashTable[h]
|
||||
si++
|
||||
hashTable[h] = si
|
||||
}
|
||||
|
||||
anchor := si
|
||||
for si < sn-minMatch {
|
||||
// hash the next 4 bytes (sequence)...
|
||||
h := binary.LittleEndian.Uint32(src[si:]) * hasher >> hashShift
|
||||
|
||||
// follow the chain until out of window and give the longest match
|
||||
mLen := 0
|
||||
offset := 0
|
||||
for next := hashTable[h] - 1; next > 0 && next > si-winSize; next = chainTable[next&winMask] - 1 {
|
||||
// the first (mLen==0) or next byte (mLen>=minMatch) at current match length must match to improve on the match length
|
||||
if src[next+mLen] == src[si+mLen] {
|
||||
for ml := 0; ; ml++ {
|
||||
if src[next+ml] != src[si+ml] || si+ml > sn {
|
||||
// found a longer match, keep its position and length
|
||||
if mLen < ml && ml >= minMatch {
|
||||
mLen = ml
|
||||
offset = si - next
|
||||
}
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
chainTable[si&winMask] = hashTable[h]
|
||||
hashTable[h] = si + 1
|
||||
|
||||
// no match found
|
||||
if mLen == 0 {
|
||||
si++
|
||||
continue
|
||||
}
|
||||
|
||||
// match found
|
||||
// update hash/chain tables with overlaping bytes:
|
||||
// si already hashed, add everything from si+1 up to the match length
|
||||
for si, ml := si+1, si+mLen; si < ml; {
|
||||
h := binary.LittleEndian.Uint32(src[si:]) * hasher >> hashShift
|
||||
chainTable[si&winMask] = hashTable[h]
|
||||
si++
|
||||
hashTable[h] = si
|
||||
}
|
||||
|
||||
lLen := si - anchor
|
||||
si += mLen
|
||||
mLen -= minMatch // match length does not include minMatch
|
||||
|
||||
if mLen < 0xF {
|
||||
dst[di] = byte(mLen)
|
||||
} else {
|
||||
dst[di] = 0xF
|
||||
}
|
||||
|
||||
// encode literals length
|
||||
if lLen < 0xF {
|
||||
dst[di] |= byte(lLen << 4)
|
||||
} else {
|
||||
dst[di] |= 0xF0
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
l := lLen - 0xF
|
||||
for ; l >= 0xFF; l -= 0xFF {
|
||||
dst[di] = 0xFF
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
dst[di] = byte(l)
|
||||
}
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
|
||||
// literals
|
||||
if di+lLen >= dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
di += copy(dst[di:], src[anchor:anchor+lLen])
|
||||
anchor = si
|
||||
|
||||
// encode offset
|
||||
if di += 2; di >= dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
dst[di-2], dst[di-1] = byte(offset), byte(offset>>8)
|
||||
|
||||
// encode match length part 2
|
||||
if mLen >= 0xF {
|
||||
for mLen -= 0xF; mLen >= 0xFF; mLen -= 0xFF {
|
||||
dst[di] = 0xFF
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
dst[di] = byte(mLen)
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if anchor == 0 {
|
||||
// incompressible
|
||||
return 0, nil
|
||||
}
|
||||
|
||||
// last literals
|
||||
lLen := len(src) - anchor
|
||||
if lLen < 0xF {
|
||||
dst[di] = byte(lLen << 4)
|
||||
} else {
|
||||
dst[di] = 0xF0
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
lLen -= 0xF
|
||||
for ; lLen >= 0xFF; lLen -= 0xFF {
|
||||
dst[di] = 0xFF
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
}
|
||||
dst[di] = byte(lLen)
|
||||
}
|
||||
if di++; di == dn {
|
||||
return di, ErrShortBuffer
|
||||
}
|
||||
|
||||
// write literals
|
||||
src = src[anchor:]
|
||||
switch n := di + len(src); {
|
||||
case n > dn:
|
||||
return di, ErrShortBuffer
|
||||
case n >= sn:
|
||||
// incompressible
|
||||
return 0, nil
|
||||
}
|
||||
di += copy(dst[di:], src)
|
||||
return di, nil
|
||||
}
|
||||
13
vendor/src/github.com/pierrec/lz4/export_test.go
vendored
Normal file
13
vendor/src/github.com/pierrec/lz4/export_test.go
vendored
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
// Expose some internals for testing purposes
|
||||
package lz4
|
||||
|
||||
// expose the possible block max sizes
|
||||
var BlockMaxSizeItems []int
|
||||
|
||||
func init() {
|
||||
for s := range bsMapValue {
|
||||
BlockMaxSizeItems = append(BlockMaxSizeItems, s)
|
||||
}
|
||||
}
|
||||
|
||||
var FrameSkipMagic = frameSkipMagic
|
||||
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/01572067d493db8dc8161f05c339a5192b0b4087-22
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/01572067d493db8dc8161f05c339a5192b0b4087-22
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/02766f768fbfbd81b752cce427eb5242a44929cc-5
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/02766f768fbfbd81b752cce427eb5242a44929cc-5
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/032f04032e12567057782672bb12670c20d38439-10
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/032f04032e12567057782672bb12670c20d38439-10
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0367b985641aca66e6e4eeea68acf5e2a02c62a8-16
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0367b985641aca66e6e4eeea68acf5e2a02c62a8-16
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/03e85abc49352b2f7cc83efd7e4274da02d78b84-6
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/03e85abc49352b2f7cc83efd7e4274da02d78b84-6
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/049f82a81bb6b4d7cf69fac5e413f6ce299d48cf-8
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/049f82a81bb6b4d7cf69fac5e413f6ce299d48cf-8
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/04c05c7956f17e57a91a47909bd0706135cf17a6-1
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/04c05c7956f17e57a91a47909bd0706135cf17a6-1
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/050e2af2a57d8044139ba21375f0ac6fcb7ab0b1-12
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/050e2af2a57d8044139ba21375f0ac6fcb7ab0b1-12
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0547c73efb9b6a345fd9a52aa0798b48dd9aca62-2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0547c73efb9b6a345fd9a52aa0798b48dd9aca62-2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/05aae2cf8756f66066cf623618042ebaa92ec745-14
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/05aae2cf8756f66066cf623618042ebaa92ec745-14
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/07fe3e792f0d2862dccc04db22c0e4aef4d41b49-6
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/07fe3e792f0d2862dccc04db22c0e4aef4d41b49-6
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0990ac54decbca1a97893e83c7feb2be89cb10ea-14
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0990ac54decbca1a97893e83c7feb2be89cb10ea-14
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/09f2eda28ecc97304659afded4d13a188baf2107-22
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/09f2eda28ecc97304659afded4d13a188baf2107-22
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0a4ff2ab3a01888686c5bc358b72be108bbb4721-16
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0a4ff2ab3a01888686c5bc358b72be108bbb4721-16
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0a7fddf3c8aa1c781223748129c9dc0807de3a6b-28
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0a7fddf3c8aa1c781223748129c9dc0807de3a6b-28
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0b5bec228930b2cfcda3be9a39107a6bc8044f1e-3
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0b5bec228930b2cfcda3be9a39107a6bc8044f1e-3
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0ca5fd3841a6777873c7ef26f65a384e7b15d065-18
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0ca5fd3841a6777873c7ef26f65a384e7b15d065-18
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0ce9c3bac93df0ea1f6343d223d5220f9eb2383a-8
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0ce9c3bac93df0ea1f6343d223d5220f9eb2383a-8
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0cf885cd35e7124005b0ba0c3c4431ddfaeff84d-11
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0cf885cd35e7124005b0ba0c3c4431ddfaeff84d-11
vendored
Normal file
Binary file not shown.
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0d7c02d4e91d82b0355baaca1237062639442db6-3
vendored
Normal file
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0d7c02d4e91d82b0355baaca1237062639442db6-3
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
"M@5
|
||||
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0e1b2b0c49dfb86fe01d3453dd24e39482e132e8-7
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/0e1b2b0c49dfb86fe01d3453dd24e39482e132e8-7
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/10.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/10.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/106b9d718c97bb7c872847d3070a570e99d9fa3e-22
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/106b9d718c97bb7c872847d3070a570e99d9fa3e-22
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/10fa5d9f0fe75f73c0e92a1fe1c00f0041ec8f39-24
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/10fa5d9f0fe75f73c0e92a1fe1c00f0041ec8f39-24
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/11.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/11.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/113a12cbb28b83fcee714d58c35bbf52c0740e90-7
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/113a12cbb28b83fcee714d58c35bbf52c0740e90-7
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/12.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/12.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1288161f8ce422490f63f257ce7338ef90fb8827-15
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1288161f8ce422490f63f257ce7338ef90fb8827-15
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/13.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/13.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/136f7224ae337a61df2e72b80af8b1aaa5933af3-10
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/136f7224ae337a61df2e72b80af8b1aaa5933af3-10
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/13c3c26f7a34d01fc89c92ca8ba2ba5ae430c225-16
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/13c3c26f7a34d01fc89c92ca8ba2ba5ae430c225-16
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/13db64707d1ea3070b4a37b6c1291d6125acbbd3-10
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/13db64707d1ea3070b4a37b6c1291d6125acbbd3-10
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/14.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/14.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/14193748a7b6cda204b11d042a35635151e90dbb-20
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/14193748a7b6cda204b11d042a35635151e90dbb-20
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/142d4f8cb427dd3562d72d889dfc0ea3a2b03d98-22
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/142d4f8cb427dd3562d72d889dfc0ea3a2b03d98-22
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/15.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/15.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/15663b854e9a4f193502ea6463dae38b4d8fca90-19
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/15663b854e9a4f193502ea6463dae38b4d8fca90-19
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/15e223354eb5378a7ee74a41dfab28ffc895ca33-1
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/15e223354eb5378a7ee74a41dfab28ffc895ca33-1
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/16.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/16.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/17.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/17.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/177c1c68fead4507aa47dd2455fd17a10ceda5ea-1
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/177c1c68fead4507aa47dd2455fd17a10ceda5ea-1
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/18.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/18.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/180a2772b126d31abcb3ef692a14b13cf47f103e-17
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/180a2772b126d31abcb3ef692a14b13cf47f103e-17
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/19.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/19.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/191e0dd24b8c7f8babeae4839768df39acc17eb1-17
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/191e0dd24b8c7f8babeae4839768df39acc17eb1-17
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1a582381781f264f551bd6f0f2284a931147e6d9-4
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1a582381781f264f551bd6f0f2284a931147e6d9-4
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1c2781a1ffae4059ce3e93a55ec8d8cbf8bdecdf-22
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1c2781a1ffae4059ce3e93a55ec8d8cbf8bdecdf-22
vendored
Normal file
Binary file not shown.
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1d37fb332301cf7de0bd51a8c1aa9be4935e89fc-1
vendored
Normal file
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1d37fb332301cf7de0bd51a8c1aa9be4935e89fc-1
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
"M
|
||||
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1d6b87b52e62cb84be834478ad88129f5e1f247b-9
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1d6b87b52e62cb84be834478ad88129f5e1f247b-9
vendored
Normal file
Binary file not shown.
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1ec2f11a8d8b9cf188a58f673a0b4a8608a926ca-3
vendored
Normal file
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1ec2f11a8d8b9cf188a58f673a0b4a8608a926ca-3
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
"M3
|
||||
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1fc2ba0bb981fec47badea1c80219452c9e3c76c-22
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1fc2ba0bb981fec47badea1c80219452c9e3c76c-22
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1fd8444ac43541c44a1c6ed8df2f688b1fa09681-1
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/1fd8444ac43541c44a1c6ed8df2f688b1fa09681-1
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/20.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/20.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/202a9c8b188cae90f29bce3bf0438a035c504eb4-20
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/202a9c8b188cae90f29bce3bf0438a035c504eb4-20
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/20cf0057443ecb322ff1169ecbe6cf20250f15af-13
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/20cf0057443ecb322ff1169ecbe6cf20250f15af-13
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/20d1a26afe563ad77e7a95fbee6ff59ebf3e61ab-13
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/20d1a26afe563ad77e7a95fbee6ff59ebf3e61ab-13
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/21.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/21.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/22.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/22.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2201e32d052c15874f0323a09c330f3666029a72-1
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2201e32d052c15874f0323a09c330f3666029a72-1
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/226780b32ba8f87ec614fdb376aa0884011c4ca9-17
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/226780b32ba8f87ec614fdb376aa0884011c4ca9-17
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/22897c61698649d7570de91613afdc19b66e6965-20
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/22897c61698649d7570de91613afdc19b66e6965-20
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/23.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/23.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/234cc427d9be32470f3c2e11a6bc16567f558e55-22
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/234cc427d9be32470f3c2e11a6bc16567f558e55-22
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/24.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/24.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2486a84bf0f161f45b050d9c19ea9e35f5def864-8
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2486a84bf0f161f45b050d9c19ea9e35f5def864-8
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/25.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/25.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/25252b16cd4afa8ef86122448688c7095684c86b-12
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/25252b16cd4afa8ef86122448688c7095684c86b-12
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/26.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/26.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/263fb3d738b862ec4050e5a9fbabfbd99cb0d9a5-16
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/263fb3d738b862ec4050e5a9fbabfbd99cb0d9a5-16
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/27.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/27.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/276580343a14eec04143e89a778dae3e14df472c-17
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/276580343a14eec04143e89a778dae3e14df472c-17
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/27fb5dc4016dc640e55a60719a222c38c604fa6b-2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/27fb5dc4016dc640e55a60719a222c38c604fa6b-2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/28.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/28.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/29.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/29.bz2
vendored
Normal file
Binary file not shown.
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2a08d7c56ff9959698688f19ddd2e1e4d4651270-3
vendored
Normal file
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2a08d7c56ff9959698688f19ddd2e1e4d4651270-3
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
"M1A
|
||||
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2a33d8514fb512aa20b0a56800cd3e12f3952b6b-26
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2a33d8514fb512aa20b0a56800cd3e12f3952b6b-26
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2a52400dd3aa2d2a40657d1e51c47c1929912927-3
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2a52400dd3aa2d2a40657d1e51c47c1929912927-3
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2ab005ac79cd4dada693dd2a747c001898d45e1e-16
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2ab005ac79cd4dada693dd2a747c001898d45e1e-16
vendored
Normal file
Binary file not shown.
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2b39aa66ecfac58e61185c9664a968233931496a-9
vendored
Normal file
1
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2b39aa66ecfac58e61185c9664a968233931496a-9
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
"MM@"ゥスソ<EFBDBD>+[ヤ
|
||||
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2c2a5947341d76797a7e2299f39d01e3aebb2eb8-19
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2c2a5947341d76797a7e2299f39d01e3aebb2eb8-19
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2cc2308b75a2e8f7eafcf69370767e5fce314892-13
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2cc2308b75a2e8f7eafcf69370767e5fce314892-13
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2cdafdadb156e2759c389b6b8edf6a402034886c-26
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2cdafdadb156e2759c389b6b8edf6a402034886c-26
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2d7f0171116eec9984eaa9138e1312e90a7d67ee-1
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2d7f0171116eec9984eaa9138e1312e90a7d67ee-1
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2de93224b5f0db491ced1ec491a9f41d71820671-11
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2de93224b5f0db491ced1ec491a9f41d71820671-11
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2e8487cf61feda70c0d74f12bfb5b692b684f82a-9
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2e8487cf61feda70c0d74f12bfb5b692b684f82a-9
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2f0ee9cf4bb951a37efc6460d5709442bc3de54e-6
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2f0ee9cf4bb951a37efc6460d5709442bc3de54e-6
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2f1ba7fe1cd90a4023706a2ea9c7c9dca8128119-30
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2f1ba7fe1cd90a4023706a2ea9c7c9dca8128119-30
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2fad20024167a500cdb8df5334a614f113efae00-20
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/2fad20024167a500cdb8df5334a614f113efae00-20
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/3.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/3.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/30.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/30.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/300579a548d96d64c9da8470efa15e787f1a36f1-28
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/300579a548d96d64c9da8470efa15e787f1a36f1-28
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/31.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/31.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/32.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/32.bz2
vendored
Normal file
Binary file not shown.
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/33.bz2
vendored
Normal file
BIN
vendor/src/github.com/pierrec/lz4/fuzz/corpus/33.bz2
vendored
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue