Lines Matching +full:- +full:h
2 * Copyright (c) 2016-2020, Yann Collet, Facebook, Inc.
5 * This source code is licensed under both the BSD-style license (found in the
8 * You may select, at your option, one of the above-listed licenses.
13 * performs an LZ4 round-trip test (compress + decompress)
24 # define MIN_CLEVEL (int)(-5)
32 #include <stddef.h> /* size_t */
33 #include <stdlib.h> /* malloc, free, exit */
34 #include <stdio.h> /* fprintf */
35 #include <string.h> /* strcmp */
36 #include <assert.h>
37 #include <sys/types.h> /* stat */
38 #include <sys/stat.h> /* stat */
39 #include "xxhash.h"
41 #include "lz4.h"
42 #include "lz4hc.h"
81 const int cLevelSpan = maxClevel - minCLevel; in select_clevel()
97 * This function abort() if it detects any round-trip error.
107 …int const selected_clevel = proposed_clevel < 0 ? -proposed_clevel : proposed_clevel; /* if leve… in roundTripTest()
224 MSG("-# : use #=[0-9] compression level (default:0 == random) \n"); in bad_usage()
238 if (argv[1][0] == '-') { in main()
239 clevel = argv[1][1] - '0'; in main()