HomeSort by: relevance | last modified time | path
    Searched refs:c_stream (Results 1 - 2 of 2) sorted by relevancy

  /src/common/dist/zlib/test/
example.c 167 z_stream c_stream; /* compression stream */ local in function:test_deflate
171 c_stream.zalloc = zalloc;
172 c_stream.zfree = zfree;
173 c_stream.opaque = (voidpf)0;
175 err = deflateInit(&c_stream, Z_DEFAULT_COMPRESSION);
178 c_stream.next_in = (z_const unsigned char *)hello;
179 c_stream.next_out = compr;
181 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
182 c_stream.avail_in = c_stream.avail_out = 1; /* force small buffers *
242 z_stream c_stream; \/* compression stream *\/ local in function:test_large_deflate
333 z_stream c_stream; \/* compression stream *\/ local in function:test_flush
409 z_stream c_stream; \/* compression stream *\/ local in function:test_dict_deflate
    [all...]
  /src/common/dist/zlib/contrib/pascal/
example.pas 185 var c_stream: z_stream; (* compression stream *)
191 c_stream.zalloc := NIL;
192 c_stream.zfree := NIL;
193 c_stream.opaque := NIL;
195 err := deflateInit(c_stream, Z_DEFAULT_COMPRESSION);
198 c_stream.next_in := hello;
199 c_stream.next_out := compr;
201 while (c_stream.total_in <> len) and
202 (c_stream.total_out < comprLen) do
204 c_stream.avail_out := 1; { force small buffers
    [all...]

Completed in 11 milliseconds