HomeSort by: relevance | last modified time | path
    Searched refs:zstd (Results 1 - 25 of 145) sorted by relevancy

1 2 3 4 5 6

  /src/external/bsd/zstd/dist/programs/
zstdless 3 zstd=${ZSTD:-zstd}
5 # TODO: Address quirks and bugs tied to old versions of less, provide a mechanism to pass flags directly to zstd
7 export LESSOPEN="|-${zstd} -cdfq %s"
  /src/external/bsd/zstd/dist/tests/cli-tests/basic/
version.sh 5 zstd -V
6 zstd --version
help.sh 5 println "+ zstd -h"
6 zstd -h
7 println "+ zstd -H"
8 zstd -H
9 println "+ zstd --help"
10 zstd --help
args.sh 3 println "+ zstd --blah" >&2
4 zstd --blah
5 println "+ zstd -xz" >&2
6 zstd -xz
7 println "+ zstd --adapt=min=1,maxx=2 file.txt" >&2
8 zstd --adapt=min=1,maxx=2 file.txt
9 println "+ zstd --train-cover=k=48,d=8,steps32 file.txt" >&2
10 zstd --train-cover=k=48,d=8,steps32 file.txt
output_dir.sh 3 println "+ zstd -r * --output-dir-mirror=\"\""
4 zstd -r * --output-dir-mirror="" && die "Should not allow empty output dir!"
5 println "+ zstd -r * --output-dir-flat=\"\""
6 zstd -r * --output-dir-flat="" && die "Should not allow empty output dir!"
  /src/external/bsd/zstd/dist/tests/cli-tests/cltools/
setup 6 zstd file
  /src/external/bsd/zstd/dist/tests/cli-tests/compression/
long-distance-matcher.sh 6 zstd -f file --long ; zstd -t file.zst
7 zstd -f file --long=20; zstd -t file.zst
stream-size.sh 6 datagen -g7654 | zstd --stream-size=7654 | zstd -t
7 datagen -g7654 | zstd --size-hint=7000 | zstd -t
basic.sh 9 zstd file ; zstd -t file.zst
10 zstd -f file ; zstd -t file.zst
11 zstd -f -z file ; zstd -t file.zst
12 zstd -f -k file ; zstd -t file.zst
13 zstd -f -C file ; zstd -t file.zs
    [all...]
format.sh 8 zstd --format=zstd file -f
9 zstd -t file.zst
12 zstd --format=$format file
13 zstd -t file.$(format_extension $format)
14 zstd -c --format=$format file | zstd -t --format=$format
multi-threaded.sh 6 zstd --single-thread file -f -q ; zstd -t file.zst
7 zstd -T2 -f file -q ; zstd -t file.zst
8 zstd --rsyncable -f file -q ; zstd -t file.zst
9 zstd -T0 -f file -q ; zstd -t file.zst
10 zstd -T0 --auto-threads=logical -f file -q ; zstd -t file.zs
    [all...]
compress-literals.sh 6 zstd file --no-compress-literals -1 -c | zstd -t
7 zstd file --no-compress-literals -19 -c | zstd -t
8 zstd file --no-compress-literals --fast=1 -c | zstd -t
9 zstd file --compress-literals -1 -c | zstd -t
10 zstd file --compress-literals --fast=1 -c | zstd -
    [all...]
adapt.sh 6 zstd -f file --adapt -c | zstd -t
11 zstd --adapt -vvvv -19 --zstd=wlog=10 file100M -o /dev/null 2>&1 | grep -q "faster speed , lighter compression"
14 zstd --no-progress --adapt -vvvv -19 --zstd=wlog=10 file100M -o /dev/null 2>&1 | grep -q "faster speed , lighter compression"
verbose-wlog.sh 7 zstd < file -vv -19 -o file.19.zst
8 zstd -vv -l file.19.zst
10 zstd < file -vv -19 --long -o file.19.long.zst
11 zstd -vv -l file.19.long.zst
multiple-files.sh 8 echo "Test zstd ./file1 - file2"
10 echo "stdin" | zstd ./file1 - ./file2 | zstd -d
11 cat file1.zst | zstd -d
12 cat file2.zst | zstd -d
14 echo "Test zstd -d ./file1.zst - file2.zst"
16 echo "stdin" | zstd - | zstd -d ./file1.zst - file2.zst
20 echo "zstd -d ./file1.zst - file2.zst -c"
21 echo "stdin" | zstd | zstd -d ./file1.zst - file2.zst -
    [all...]
row-match-finder.sh 6 zstd file -7f --row-match-finder
7 zstd file -7f --no-row-match-finder
  /src/external/bsd/zstd/dist/tests/cli-tests/dict-builder/
no-inputs.sh 3 zstd --train
  /src/external/bsd/zstd/dist/tests/cli-tests/decompression/
golden.sh 7 zstd -r -t "$GOLDEN_DIR"
  /src/external/bsd/zstd/dist/tests/cli-tests/file-stat/
compress-file-to-stdout.sh 7 zstd file -cq --trace-file-stat > file.zst
8 zstd -tq file.zst
compress-stdin-to-file.sh 7 zstd < file -q --trace-file-stat -o file.zst
8 zstd -tq file.zst
compress-stdin-to-stdout.sh 7 zstd < file -cq --trace-file-stat > file.zst
8 zstd -tq file.zst
decompress-file-to-file.sh 5 datagen | zstd -q > file.zst
8 zstd -dq --trace-file-stat file.zst
decompress-file-to-stdout.sh 5 datagen | zstd -q > file.zst
7 zstd -dcq --trace-file-stat file.zst > file
decompress-stdin-to-file.sh 5 datagen | zstd -q > file.zst
7 zstd -dcq --trace-file-stat < file.zst -o file
decompress-stdin-to-stdout.sh 5 datagen | zstd -q > file.zst
7 zstd -dcq --trace-file-stat < file.zst > file

Completed in 23 milliseconds

1 2 3 4 5 6