Searched refs:decomp_strm (Results 1 – 2 of 2) sorted by relevance
43 z_stream decomp_strm; in LLVMFuzzerTestOneInput() local44 decomp_strm.zalloc = Z_NULL; in LLVMFuzzerTestOneInput()45 decomp_strm.zfree = Z_NULL; in LLVMFuzzerTestOneInput()46 decomp_strm.opaque = Z_NULL; in LLVMFuzzerTestOneInput()47 ret = inflateInit(&decomp_strm); in LLVMFuzzerTestOneInput()49 decomp_strm.next_in = comp_buf; in LLVMFuzzerTestOneInput()50 decomp_strm.avail_in = comp_sz; in LLVMFuzzerTestOneInput()52 while (decomp_strm.avail_in > 0) { in LLVMFuzzerTestOneInput()54 decomp_strm.next_out = decomp_buf; in LLVMFuzzerTestOneInput()55 decomp_strm.avail_out = sizeof(decomp_buf); in LLVMFuzzerTestOneInput()[all …]
128 z_stream comp_strm, decomp_strm; in TEST() local153 decomp_strm.zalloc = Z_NULL; in TEST()154 decomp_strm.zfree = Z_NULL; in TEST()155 decomp_strm.opaque = Z_NULL; in TEST()156 ret = inflateInit(&decomp_strm); in TEST()158 decomp_strm.next_in = comp_buf; in TEST()159 decomp_strm.avail_in = comp_sz; in TEST()161 while (decomp_strm.avail_in > 0) { in TEST()162 decomp_strm.next_out = decomp_buf; in TEST()163 decomp_strm.avail_out = sizeof(decomp_buf); in TEST()[all …]