Searched refs:compressed_buf (Results 1 – 1 of 1) sorted by relevance
/third_party/uboot/u-boot-2020.01/test/ |
D | compression.c | 308 void *compressed_buf; member 321 memset(buf->compressed_buf, 'A', TEST_BUFFER_SIZE); in run_test_internal() 323 buf->compressed_buf, buf->compressed_size, in run_test_internal() 328 errcheck(((char *)buf->compressed_buf)[buf->compressed_size - 1] != in run_test_internal() 330 errcheck(((char *)buf->compressed_buf)[buf->compressed_size] == 'A'); in run_test_internal() 333 errcheck(uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() 343 errcheck(uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() 362 ret = uncompress(uts, buf->compressed_buf, buf->compressed_size, in run_test_internal() 390 buf->compressed_buf = malloc(buf->compressed_size); in run_test() 391 errcheck(buf->compressed_buf); in run_test() [all …]
|