Home
last modified time | relevance | path

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

/components/dfs/dfs_v1/filesystems/cromfs/
A Ddfs_cromfs.c686 void *compressed_file_buff = NULL; in fill_file_data() local
697 compressed_file_buff = (void *)malloc(size); in fill_file_data()
698 if (!compressed_file_buff) in fill_file_data()
702 if (cromfs_read_bytes(ci, fi->partition_pos, compressed_file_buff, size) != size) in fill_file_data()
706 …if (uncompress((uint8_t *)fi->buff, (uLongf *)&osize, (uint8_t *)compressed_file_buff, size) != Z_… in fill_file_data()
714 if (compressed_file_buff) in fill_file_data()
716 free(compressed_file_buff); in fill_file_data()
/components/dfs/dfs_v2/filesystems/cromfs/
A Ddfs_cromfs.c749 void *compressed_file_buff = NULL; in fill_file_data() local
760 compressed_file_buff = (void *)malloc(size); in fill_file_data()
761 if (!compressed_file_buff) in fill_file_data()
765 if (cromfs_read_bytes(ci, fi->partition_pos, compressed_file_buff, size) != size) in fill_file_data()
769 …if (uncompress((uint8_t *)fi->buff, (uLongf *)&osize, (uint8_t *)compressed_file_buff, size) != Z_… in fill_file_data()
777 if (compressed_file_buff) in fill_file_data()
779 free(compressed_file_buff); in fill_file_data()

Completed in 22 milliseconds