Searched refs:strm (Results 1 - 25 of 115) sorted by relevance

12345

/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/
H A Dcompress-debug.c38 static struct z_stream_s strm;
40 strm.zalloc = NULL;
41 strm.zfree = NULL;
42 strm.opaque = NULL;
43 deflateInit (&strm, Z_DEFAULT_COMPRESSION);
44 return &strm;
52 compress_data (struct z_stream_s *strm ATTRIBUTE_UNUSED,
64 strm->next_in = (Bytef *) (*next_in);
65 strm->avail_in = *avail_in;
66 strm
[all...]
/netbsd-6-1-5-RELEASE/common/dist/zlib/
H A Dinffast.h13 void inflate_fast OF((z_streamp strm, unsigned start));
/netbsd-6-1-5-RELEASE/external/cddl/osnet/dist/uts/common/zmod/
H A Dinffast.h13 void inflate_fast OF((z_streamp strm, unsigned start));
H A Dzlib_lint.c65 inflate(z_streamp strm, int flush) argument
72 inflateInit2_(z_streamp strm, int window, const char *version, int size) argument
79 inflateEnd(z_streamp strm) argument
86 inflateReset(z_streamp strm) argument
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/
H A Dinffast.h11 void inflate_fast OF((z_streamp strm, unsigned start));
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/src/liblzma/common/
H A Dcommon.c145 lzma_strm_init(lzma_stream *strm) argument
147 if (strm == NULL)
150 if (strm->internal == NULL) {
151 strm->internal = lzma_alloc(sizeof(lzma_internal),
152 strm->allocator);
153 if (strm->internal == NULL)
156 strm->internal->next = LZMA_NEXT_CODER_INIT;
159 strm->internal->supported_actions[LZMA_RUN] = false;
160 strm->internal->supported_actions[LZMA_SYNC_FLUSH] = false;
161 strm
314 lzma_end(lzma_stream *strm) argument
[all...]
H A Deasy_encoder.c18 lzma_easy_encoder(lzma_stream *strm, uint32_t preset, lzma_check check)
24 return lzma_stream_encoder(strm, opt_easy.filters, check);
/netbsd-6-1-5-RELEASE/external/public-domain/xz/dist/tests/
H A Dtests.h58 coder_loop(lzma_stream *strm, uint8_t *in, size_t in_size, argument
67 strm->next_in = NULL;
68 strm->avail_in = 0;
69 strm->next_out = NULL;
70 strm->avail_out = 0;
77 strm->next_in = in++;
78 strm->avail_in = 1;
83 strm->next_out = out++;
84 strm->avail_out = 1;
87 ret = lzma_code(strm, actio
110 decoder_loop_ret(lzma_stream *strm, uint8_t *in, size_t in_size, lzma_ret expected_ret) argument
118 decoder_loop(lzma_stream *strm, uint8_t *in, size_t in_size) argument
[all...]
/netbsd-6-1-5-RELEASE/common/dist/zlib/examples/
H A Dzpipe.c32 z_stream strm; local
37 strm.zalloc = Z_NULL;
38 strm.zfree = Z_NULL;
39 strm.opaque = Z_NULL;
40 ret = deflateInit(&strm, level);
46 strm.avail_in = fread(in, 1, CHUNK, source);
48 (void)deflateEnd(&strm);
52 strm.next_in = in;
57 strm.avail_out = CHUNK;
58 strm
88 z_stream strm; local
[all...]
H A Dzran.c147 z_stream strm; local
152 strm.zalloc = Z_NULL;
153 strm.zfree = Z_NULL;
154 strm.opaque = Z_NULL;
155 strm.avail_in = 0;
156 strm.next_in = Z_NULL;
157 ret = inflateInit2(&strm, 47); /* automatic zlib or gzip decoding */
166 strm.avail_out = 0;
169 strm.avail_in = fread(input, 1, CHUNK, in);
174 if (strm
250 z_stream strm; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/examples/
H A Dzpipe.c30 z_stream strm; local
35 strm.zalloc = Z_NULL;
36 strm.zfree = Z_NULL;
37 strm.opaque = Z_NULL;
38 ret = deflateInit(&strm, level);
44 strm.avail_in = fread(in, 1, CHUNK, source);
46 (void)deflateEnd(&strm);
50 strm.next_in = in;
55 strm.avail_out = CHUNK;
56 strm
86 z_stream strm; local
[all...]
H A Dzran.c145 z_stream strm; local
150 strm.zalloc = Z_NULL;
151 strm.zfree = Z_NULL;
152 strm.opaque = Z_NULL;
153 strm.avail_in = 0;
154 strm.next_in = Z_NULL;
155 ret = inflateInit2(&strm, 47); /* automatic zlib or gzip decoding */
164 strm.avail_out = 0;
167 strm.avail_in = fread(input, 1, CHUNK, in);
172 if (strm
248 z_stream strm; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_istream/exceptions/char/
H A D9561.cc32 std::istream strm (&b);
33 strm.exceptions (std::ios::badbit);
38 i = strm.get();
39 i = strm.get();
40 i = strm.get();
44 // strm should throw facet_error and not do anything else
45 VERIFY(strm.bad());
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_istream/exceptions/wchar_t/
H A D9561.cc30 std::wistream strm (&b);
31 strm.exceptions (std::wios::badbit);
36 i = strm.get();
37 i = strm.get();
38 i = strm.get();
42 // strm should throw facet_error and not do anything else
43 VERIFY(strm.bad());
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_istream/exceptions/char/
H A D9561.cc33 std::istream strm (&b);
34 strm.exceptions (std::ios::badbit);
39 i = strm.get();
40 i = strm.get();
41 i = strm.get();
45 // strm should throw facet_error and not do anything else
46 VERIFY(strm.bad());
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_istream/exceptions/wchar_t/
H A D9561.cc31 std::wistream strm (&b);
32 strm.exceptions (std::wios::badbit);
37 i = strm.get();
38 i = strm.get();
39 i = strm.get();
43 // strm should throw facet_error and not do anything else
44 VERIFY(strm.bad());
/netbsd-6-1-5-RELEASE/usr.bin/gzip/
H A Dunxz.c50 lzma_stream strm = LZMA_STREAM_INIT; local
61 strm.next_in = ibuf;
63 strm.avail_in = read(i, ibuf + prelen, sizeof(ibuf) - prelen);
64 if (strm.avail_in == (size_t)-1)
66 strm.avail_in += prelen;
67 *bytes_in = strm.avail_in;
69 if ((ret = lzma_stream_decoder(&strm, UINT64_MAX, flags)) != LZMA_OK)
72 strm.next_out = NULL;
73 strm.avail_out = 0;
74 if ((ret = lzma_code(&strm, LZMA_RU
[all...]
/netbsd-6-1-5-RELEASE/common/dist/zlib/contrib/infback9/
H A Dinfback9.h25 ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
28 ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
29 ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
33 #define inflateBack9Init(strm, window) \
34 inflateBack9Init_((strm), (window), \
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/contrib/infback9/
H A Dinfback9.h23 ZEXTERN int ZEXPORT inflateBack9 OF((z_stream FAR *strm,
26 ZEXTERN int ZEXPORT inflateBack9End OF((z_stream FAR *strm));
27 ZEXTERN int ZEXPORT inflateBack9Init_ OF((z_stream FAR *strm,
31 #define inflateBack9Init(strm, window) \
32 inflateBack9Init_((strm), (window), \
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_ostream/exceptions/char/
H A D9561.cc43 std::ostream strm (&b);
44 strm.exceptions(std::ios::badbit);
48 strm << std::endl;
52 // strm should throw foobar and not do anything else
53 VERIFY(strm.bad());
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_ostream/exceptions/wchar_t/
H A D9561.cc41 std::wostream strm(&b);
42 strm.exceptions(std::wios::badbit);
46 strm << std::endl;
50 // strm should throw foobar and not do anything else
51 VERIFY(strm.bad());
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/char/
H A D2.cc49 std::ostream strm(&b);
51 buf tb(&strm);
54 strm.tie(&tied);
55 std::ostream::sentry s(strm);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/27_io/basic_ostream/sentry/wchar_t/
H A D2.cc47 std::wostream strm(&b);
49 buf tb(&strm);
52 strm.tie(&tied);
53 std::wostream::sentry s(strm);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_ostream/exceptions/char/
H A D9561.cc44 std::ostream strm (&b);
45 strm.exceptions(std::ios::badbit);
49 strm << std::endl;
53 // strm should throw foobar and not do anything else
54 VERIFY(strm.bad());
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/27_io/basic_ostream/exceptions/wchar_t/
H A D9561.cc42 std::wostream strm(&b);
43 strm.exceptions(std::wios::badbit);
47 strm << std::endl;
51 // strm should throw foobar and not do anything else
52 VERIFY(strm.bad());

Completed in 332 milliseconds

12345