Lines Matching +full:- +full:h

4 …* License    : Follows same licensing as the lz4.c/lz4.h program at any given time.  Currently, BS…
28 … can help avoid some test cases and branching which might be useful in some implementation-specific
30 * wrapper function because this function isn't exposed with lz4.h.
42 …* size of the compressed buffer (it will simply be read-to-end, hence it's non-saf…
46 * exposed for anyone using lz4.h to utilize.
54 /* Since lz4 compiles with c99 and not gnu/std99 we need to enable POSIX linking for time.h structs…
64 #include "lz4.h"
65 #include <stdio.h> /* for printf() */
66 #include <stdlib.h> /* for exit() */
67 #include <string.h> /* for atoi() memcmp() */
68 #include <stdint.h> /* for uint_types */
69 #include <inttypes.h> /* for PRIu64 */
70 #include <time.h> /* for clock_gettime() */
71 #include <locale.h> /* for setlocale() */
87 * Easy show-error-and-bail function.
221 time_taken = BILLION *(end.tv_sec - start.tv_sec) + end.tv_nsec - start.tv_nsec; in bench()
244 …create 2 sources (char *) of 2000 bytes each. One normal text, the other highly-compressible text. in main()
258 …// Create known-good buffers to verify our tests with other functions will produce the same result… in main()
261 …run_screaming("Couldn't create a known-good destination buffer for comparison... this is bad.", 1); in main()
265 …run_screaming("Couldn't create a known-good (highly compressible) destination buffer for compariso… in main()
279 …mp(), the value we got in dst from LZ4_compress_fast doesn't match the known-good value. This is … in main()
289 … value we got in dst from LZ4_compress_fast_extState doesn't match the known-good value. This is … in main()
293 …// values for the enum types such as dictionary and limitations. Any other direct-use is probably… in main()
295 …ess_generic() function is 'static inline' and does not have a prototype in lz4.h to expose a symbol in main()
296 … can't access it directly. I don't want to submit a PR that modifies lz4.c/h. Yann and others can in main()
309 …), the value we got in dst from LZ4_compress_generic doesn't match the known-good value. This is … in main()
317 // Suite A - Normal Compressibility in main()
327 // Suite B - Highly Compressible in main()
339 const char *format = "|%-14s|%-30s|%'14.9f|%'16d|%'14d|%'13.2f%%|\n"; in main()
340 const char *header_format = "|%-14s|%-30s|%14s|%16s|%14s|%14s|\n"; in main()
341 …har *separator = "+--------------+------------------------------+--------------+--------------… in main()