Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/test/
H A Dcompression.c296 void *uncompressed_buf = NULL; in run_test() local
309 uncompressed_buf = malloc(uncompressed_size); in run_test()
310 errcheck(uncompressed_buf != NULL); in run_test()
328 uncompressed_buf, uncompressed_size, in run_test()
332 errcheck(memcmp(orig_buf, uncompressed_buf, orig_size) == 0); in run_test()
335 memset(uncompressed_buf, 'A', TEST_BUFFER_SIZE); in run_test()
337 uncompressed_buf, orig_size, in run_test()
340 errcheck(memcmp(orig_buf, uncompressed_buf, orig_size) == 0); in run_test()
341 errcheck(((char *)uncompressed_buf)[orig_size] == 'A'); in run_test()
368 free(uncompressed_buf); in run_test()