Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/tests/ndk_program_tests/
Dzlib_test.cc54 z_stream decode_stream; in TEST() local
55 memset(&decode_stream, 0, sizeof(decode_stream)); in TEST()
56 decode_stream.next_in = reinterpret_cast<Bytef*>(output); in TEST()
57 decode_stream.avail_in = encode_stream.total_out; in TEST()
58 decode_stream.next_out = reinterpret_cast<Bytef*>(input); in TEST()
59 decode_stream.avail_out = sizeof(input); in TEST()
61 decode_stream.zalloc = ZAlloc; in TEST()
62 decode_stream.zfree = ZFree; in TEST()
63 decode_stream.opaque = &opaque; in TEST()
64 ASSERT_EQ(inflateInit(&decode_stream), Z_OK); in TEST()
[all …]