Searched refs:run_screaming (Results 1 – 2 of 2) sorted by relevance
/external/lz4/examples/ |
D | simple_buffer.c | 19 void run_screaming(const char *message, const int code) { in run_screaming() function 50 run_screaming("Failed to allocate memory for *compressed_data.", 1); in main() 57 …run_screaming("A negative result from LZ4_compress_default indicates a failure trying to compress … in main() 59 …run_screaming("A result of 0 means compression worked, but was stopped because the destination buf… in main() 66 run_screaming("Failed to re-alloc memory for compressed_data. Sad :(", 1); in main() 73 run_screaming("Failed to allocate memory for *regen_buffer.", 1); in main() 80 …run_screaming("A negative result from LZ4_decompress_safe indicates a failure trying to decompress… in main() 82 …run_screaming("I'm not sure this function can ever return 0. Documentation in lz4.h doesn't indic… in main() 91 run_screaming("Validation failed. *src and *new_src are not identical.", 1); in main()
|
D | compress_functions.c | 88 void run_screaming(const char *message, const int code) { in run_screaming() function 100 run_screaming(message, 1); in usage() 134 … run_screaming("Couldn't run LZ4_compress_default()... error code received is in exit code.", rv); in bench() 136 …run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench() 147 … run_screaming("Couldn't run LZ4_compress_fast()... error code received is in exit code.", rv); in bench() 149 …run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench() 160 …run_screaming("Couldn't run LZ4_compress_fast_extState()... error code received is in exit code.",… in bench() 162 …run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench() 193 … run_screaming("Couldn't run LZ4_decompress_safe()... error code received is in exit code.", rv); in bench() 195 …run_screaming("According to memcmp(), the compressed dst we got doesn't match the known_good_dst..… in bench() [all …]
|