OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:d_stream
(Results
1 - 2
of
2
) sorted by null
/external/zlib/contrib/pascal/
example.pas
232
d_stream
: z_stream; (* decompression stream *)
236
d_stream
.zalloc := NIL;
237
d_stream
.zfree := NIL;
238
d_stream
.opaque := NIL;
240
d_stream
.next_in := compr;
241
d_stream
.avail_in := 0;
242
d_stream
.next_out := uncompr;
244
err := inflateInit(
d_stream
);
247
while (
d_stream
.total_out < uncomprLen) and
248
(
d_stream
.total_in < comprLen) d
[
all
...]
/external/zlib/
example.c
212
z_stream
d_stream
; /* decompression stream */
local
216
d_stream
.zalloc = (alloc_func)0;
217
d_stream
.zfree = (free_func)0;
218
d_stream
.opaque = (voidpf)0;
220
d_stream
.next_in = compr;
221
d_stream
.avail_in = 0;
222
d_stream
.next_out = uncompr;
224
err = inflateInit(&
d_stream
);
227
while (
d_stream
.total_out < uncomprLen &&
d_stream
.total_in < comprLen)
308
z_stream
d_stream
; \/* decompression stream *\/
local
387
z_stream
d_stream
; \/* decompression stream *\/
local
468
z_stream
d_stream
; \/* decompression stream *\/
local
[
all
...]
Completed in 71 milliseconds