OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:c_stream
(Results
1 - 2
of
2
) sorted by null
/external/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
...]
/external/zlib/
example.c
173
z_stream
c_stream
; /* compression stream */
local
177
c_stream
.zalloc = (alloc_func)0;
178
c_stream
.zfree = (free_func)0;
179
c_stream
.opaque = (voidpf)0;
181
err = deflateInit(&
c_stream
, Z_DEFAULT_COMPRESSION);
184
c_stream
.next_in = (Bytef*)hello;
185
c_stream
.next_out = compr;
187
while (
c_stream
.total_in != len &&
c_stream
.total_out < comprLen) {
188
c_stream
.avail_in = c_stream.avail_out = 1; /* force small buffers *
252
z_stream
c_stream
; \/* compression stream *\/
local
348
z_stream
c_stream
; \/* compression stream *\/
local
430
z_stream
c_stream
; \/* compression stream *\/
local
[
all
...]
Completed in 157 milliseconds