Searched refs:compressed_buf (Results 1 – 1 of 1) sorted by relevance
/openbmc/u-boot/test/ |
H A D | compression.c | 306 void *compressed_buf; member 319 memset(buf->compressed_buf, 'A', TEST_BUFFER_SIZE); in run_test_internal() 321 buf->compressed_buf, buf->compressed_size, in run_test_internal() 326 errcheck(((char *)buf->compressed_buf)[buf->compressed_size - 1] != in run_test_internal() 328 errcheck(((char *)buf->compressed_buf)[buf->compressed_size] == 'A'); in run_test_internal() 331 errcheck(uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() 341 errcheck(uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() 360 ret = uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() 388 buf->compressed_buf = malloc(buf->compressed_size); in run_test() 389 errcheck(buf->compressed_buf); in run_test() [all …]
|