Home
last modified time | relevance | path

Searched refs:run_screaming (Results 1 – 2 of 2) sorted by relevance

/external/lz4/examples/
Dsimple_buffer.c19 void run_screaming(const char *message, const int code) { in run_screaming() function
47 run_screaming("Failed to allocate memory for *compressed_data.", 1); in main()
54run_screaming("A negative result from LZ4_compress_default indicates a failure trying to compress … in main()
56run_screaming("A result of 0 means compression worked, but was stopped because the destination buf… in main()
64 run_screaming("Failed to re-alloc memory for compressed_data. Sad :(", 1); in main()
71 run_screaming("Failed to allocate memory for *new_src.", 1); in main()
76run_screaming("A negative result from LZ4_decompress_fast indicates a failure trying to decompress… in main()
78run_screaming("I'm not sure this function can ever return 0. Documentation in lz4.h doesn't indic… in main()
87 run_screaming("Validation failed. *src and *new_src are not identical.", 1); in main()
Dcompress_functions.c88 void run_screaming(const char *message, const int code) { in run_screaming() function
100 run_screaming(message, 1); in usage()
134run_screaming("Couldn't run LZ4_compress_default()... error code received is in exit code.", rv); in bench()
136run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench()
147run_screaming("Couldn't run LZ4_compress_fast()... error code received is in exit code.", rv); in bench()
149run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench()
160run_screaming("Couldn't run LZ4_compress_fast_extState()... error code received is in exit code.",… in bench()
162run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench()
193run_screaming("Couldn't run LZ4_decompress_safe()... error code received is in exit code.", rv); in bench()
195run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench()
[all …]